use of com.epam.healenium.FrameworkPage in project healenium-example-maven by healenium.
the class XpathTest method testXpathFollowing.
@Test
@Severity(SeverityLevel.MINOR)
@Description("XPath Following")
public void testXpathFollowing() {
FrameworkPage page = pages.get(String.valueOf(PagesType.TEST_ENV));
page.openPage().findTestElement(LocatorType.XPATH, "//*[@id='change_className']/following::test_tag").clickSubmitButton().findTestElement(LocatorType.XPATH, "//*[@id='change_className']/following::test_tag");
}
Aggregations