use of com.seleniumtests.uipage.htmlelements.TextFieldElement in project seleniumRobot by bhecquet.
the class TestFrameElement method testTextFieldElementOutsideFrame.
@Test(groups = { "ut" })
public void testTextFieldElementOutsideFrame() throws Exception {
TextFieldElement el = new TextFieldElement("", By.id("el"));
el.sendKeys("toto");
verify(locator, times(0)).frame(any(WebElement.class));
}
Aggregations