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