use of com.seleniumtests.uipage.htmlelements.HtmlElement in project seleniumRobot by bhecquet.
the class TestHtmlElement method testIsElementPresentFound.
@Test(groups = { "ut" })
public void testIsElementPresentFound() throws Exception {
HtmlElement present = new HtmlElement("element", By.id("present"));
when(driver.findElement(By.id("present"))).thenReturn(el);
LocalDateTime start = LocalDateTime.now();
boolean exceptionRaised = false;
try {
present.waitForPresent(5);
} catch (TimeoutException e) {
exceptionRaised = true;
}
Assert.assertFalse(exceptionRaised);
Assert.assertTrue(LocalDateTime.now().minusSeconds(5).isBefore(start));
}
use of com.seleniumtests.uipage.htmlelements.HtmlElement in project seleniumRobot by bhecquet.
the class TestHtmlElement method init.
@BeforeMethod(groups = { "ut" })
private void init() throws WebDriverException, IOException {
// mimic sub elements of the HtmlElement
List<WebElement> subElList = new ArrayList<WebElement>();
subElList.add(subElement1);
subElList.add(subElement2);
// list of elements correspond
List<WebElement> elList = new ArrayList<WebElement>();
elList.add(element);
// add DriverExceptionListener to reproduce driver behavior
eventDriver = spy(new CustomEventFiringWebDriver(driver).register(new DriverExceptionListener()));
PowerMockito.mockStatic(WebUIDriver.class);
when(WebUIDriver.getWebDriver(anyBoolean())).thenReturn(eventDriver);
when(WebUIDriver.getWebUIDriver(anyBoolean())).thenReturn(uiDriver);
when(driver.findElement(By.id("el"))).thenReturn(element);
when(driver.findElement(By.id("frame"))).thenReturn(frameElement);
when(driver.findElements(By.id("frame"))).thenReturn(Arrays.asList(frameElement));
when(driver.findElements(By.name("subEl"))).thenReturn(subElList);
when(driver.findElement(By.name("subEl"))).thenReturn(subElement1);
when(driver.findElements(By.id("el"))).thenReturn(elList);
when(driver.getKeyboard()).thenReturn(keyboard);
when(driver.getMouse()).thenReturn(mouse);
when(driver.switchTo()).thenReturn(locator);
when(driver.manage()).thenReturn(options);
when(options.timeouts()).thenReturn(timeouts);
when(driver.executeScript(anyString())).thenReturn(Arrays.asList(100, 100));
when(uiDriver.getConfig()).thenReturn(driverConfig);
when(driverConfig.getBrowserType()).thenReturn(BrowserType.HTMLUNIT);
when(driverConfig.getMajorBrowserVersion()).thenReturn(1);
when(element.findElement(By.name("subEl"))).thenReturn(subElement1);
when(element.findElements(By.name("subEl"))).thenReturn(subElList);
when(element.getAttribute(anyString())).thenReturn("attribute");
when(element.getSize()).thenReturn(new Dimension(10, 10));
when(element.getLocation()).thenReturn(new Point(5, 5));
when(frame.getLocation()).thenReturn(new Point(5, 5));
when(element.getTagName()).thenReturn("h1");
when(element.getText()).thenReturn("text");
when(element.isDisplayed()).thenReturn(true);
when(element.isEnabled()).thenReturn(true);
when(subElement1.isDisplayed()).thenReturn(true);
when(subElement2.isDisplayed()).thenReturn(true);
when(subElement1.getLocation()).thenReturn(new Point(5, 5));
when(subElement2.getLocation()).thenReturn(new Point(5, 5));
when(mobileElement.getCenter()).thenReturn(new Point(2, 2));
when(mobileElement.getLocation()).thenReturn(new Point(1, 1));
when(mobileElement.isDisplayed()).thenReturn(true);
when(mobileElement.getId()).thenReturn("12");
// init for mobile tests
AppiumCommandExecutor ce = Mockito.mock(AppiumCommandExecutor.class);
Response response = new Response(new SessionId("1"));
response.setValue(new HashMap<String, Object>());
Response findResponse = new Response(new SessionId("1"));
findResponse.setValue(mobileElement);
when(ce.execute(any())).thenReturn(response, response, response, findResponse);
doReturn(response).when(ce).execute(argThat(command -> DriverCommand.NEW_SESSION.equals(command.getName())));
doReturn(response).when(ce).execute(argThat(command -> DriverCommand.FIND_ELEMENT.equals(command.getName())));
doReturn(response).when(ce).execute(argThat(command -> "getSession".equals(command.getName())));
// newSession, getSession, getSession, findElement
mobileDriver = Mockito.spy(new AppiumDriver<>(ce, new DesiredCapabilities()));
SeleniumTestsContextManager.getThreadContext().setTestType(TestType.WEB);
SeleniumTestsContextManager.getThreadContext().setBrowser("htmlunit");
}
use of com.seleniumtests.uipage.htmlelements.HtmlElement in project seleniumRobot by bhecquet.
the class TestHtmlElement method testIsElementPresentNotFound.
@Test(groups = { "ut" })
public void testIsElementPresentNotFound() throws Exception {
HtmlElement elNotPresent = new HtmlElement("element", By.id("notPresent"));
when(driver.findElement(By.id("notPresent"))).thenThrow(new NoSuchElementException("Unable to locate element with ID: 'notPresent'"));
LocalDateTime start = LocalDateTime.now();
boolean exceptionRaised = false;
try {
elNotPresent.waitForPresent(5);
} catch (TimeoutException e) {
exceptionRaised = true;
}
Assert.assertTrue(exceptionRaised);
Assert.assertTrue(LocalDateTime.now().minusSeconds(5).isAfter(start));
}
use of com.seleniumtests.uipage.htmlelements.HtmlElement in project seleniumRobot by bhecquet.
the class TestHtmlElement method testIsElementPresentFoundWithFrameNotFoundOnFirstTry.
/**
* Check that element is found if frame is not found on first search
* @throws Exception
*/
@Test(groups = { "ut" })
public void testIsElementPresentFoundWithFrameNotFoundOnFirstTry() throws Exception {
HtmlElement present = new HtmlElement("element", By.id("present"), frame);
when(driver.findElement(By.id("present"))).thenReturn(el);
when(driver.findElement(By.id("frame"))).thenThrow(NoSuchElementException.class).thenReturn(frameElement);
when(driver.findElements(By.id("frame"))).thenReturn(new ArrayList<>()).thenReturn(Arrays.asList(frameElement));
LocalDateTime start = LocalDateTime.now();
boolean exceptionRaised = false;
try {
present.waitForPresent(3);
} catch (TimeoutException e) {
exceptionRaised = true;
}
verify(driver.switchTo()).frame(any(WebElement.class));
Assert.assertFalse(exceptionRaised);
Assert.assertTrue(LocalDateTime.now().minusSeconds(3).isBefore(start));
}
use of com.seleniumtests.uipage.htmlelements.HtmlElement in project seleniumRobot by bhecquet.
the class TestHtmlElement method testElementNotFoundDefaultTimeout.
@Test(groups = { "ut" })
public void testElementNotFoundDefaultTimeout() throws Exception {
HtmlElement elNotPresent = new HtmlElement("element", By.id("notPresent"));
when(driver.findElement(By.id("notPresent"))).thenThrow(new NoSuchElementException("Unable to locate element with ID: 'notPresent'"));
LocalDateTime start = LocalDateTime.now();
try {
elNotPresent.getValue();
} catch (NoSuchElementException e) {
}
Assert.assertTrue(LocalDateTime.now().minusSeconds(29).isAfter(start));
}
Aggregations