use of com.capgemini.ntc.selenium.core.newDrivers.elementType.Button in project devonfw-testing by devonfw.
the class TheInternetPage method clickDynamicContentPage.
public DynamicContentPage clickDynamicContentPage() {
Button elementLink = new Button(selectorDynamicContent);
elementLink.click();
return new DynamicContentPage();
}
use of com.capgemini.ntc.selenium.core.newDrivers.elementType.Button in project devonfw-testing by devonfw.
the class TheInternetPage method clickSortableDataTablesLink.
public SortableDataTablesPage clickSortableDataTablesLink() {
Button elementLink = new Button(selectorSortableDataTablesLink);
elementLink.click();
return new SortableDataTablesPage();
}
use of com.capgemini.ntc.selenium.core.newDrivers.elementType.Button in project devonfw-testing by devonfw.
the class TheInternetPage method clickCheckboxesLink.
public CheckboxesPage clickCheckboxesLink() {
Button elementLink = new Button(selectorCheckboxesLink);
elementLink.click();
return new CheckboxesPage();
}
use of com.capgemini.ntc.selenium.core.newDrivers.elementType.Button in project devonfw-testing by devonfw.
the class TheInternetPage method clickFileDownloadLink.
public FileDownloadPage clickFileDownloadLink() {
Button elementLink = new Button(selectorFileDownloadLink);
elementLink.click();
return new FileDownloadPage();
}
use of com.capgemini.ntc.selenium.core.newDrivers.elementType.Button in project devonfw-testing by devonfw.
the class TheInternetPage method clickDropdownLink.
public DropdownPage clickDropdownLink() {
Button elementLink = new Button(selectorDropdownClickLink);
elementLink.click();
return new DropdownPage();
}
Aggregations