Esempio n. 1
0
 @Test
 public void updateBridgeReconnectAttempts() throws Exception {
   page.switchToConnectionManagementTab();
   editTextAndVerify(BRIDGE_ADDRESS, "reconnectAttempts", "reconnect-attempts", -1);
 }
Esempio n. 2
0
 @Test
 public void updateBridgeRetryInterval() throws Exception {
   page.switchToConnectionManagementTab();
   editTextAndVerify(BRIDGE_ADDRESS, "retryInterval", "retry-interval", 1L);
 }
Esempio n. 3
0
 @Test
 public void updateBridgeRetryIntervalWrongValue() {
   page.switchToConnectionManagementTab();
   verifyIfErrorAppears("retryInterval", "-10");
 }
Esempio n. 4
0
 @Test
 public void updateBridgePassword() throws Exception {
   page.switchToConnectionManagementTab();
   editTextAndVerify(BRIDGE_ADDRESS, "password", "pwd1");
 }