@Test
 public void testIsUI4() {
   boolean isUI = LocatorUtil.isUIElement("//com.vaadin.ui.UI[0]");
   Assert.assertTrue(isUI);
 }
 @Test
 public void testIsNotification4() {
   boolean isUI = LocatorUtil.isNotificationElement("//com.vaadin.ui.VNotification[0]");
   Assert.assertTrue(isUI);
 }
 @Test
 public void testIsUI3() {
   boolean isUI = LocatorUtil.isUIElement("//com.vaadin.ui.UI[RandomString");
   Assert.assertTrue(isUI);
 }