BakeoutController-Basic  0.1
A Controller for the Omicron vacuum chamber
DeviceListControllerTestCase.java
1 package unit.ui.controllers.device_list_controller;
2 
3 import org.junit.Before;
5 
9 public abstract class DeviceListControllerTestCase extends
11  protected static final String queryForRefreshButton = "#refresh-button";
12  protected static final String queryForNoPowerSupply =
13  "#no-power-supply-message";
14  protected static final String queryForPowerSupply =
15  "#power-supply-message";
16  protected static final String queryForDeviceListTab =
17  "#device-list";
18 
19  protected static final String queryForPressureGaugeMessage =
20  "#pressure-gauge-message";
21 
22  @Before
23  public void navigateToDeviceListTab(){
24  clickOn(queryForDeviceListTab);
25  }
26 }
Git Repo