Search in sources :

Example 1 with Button

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();
}
Also used : Button(com.capgemini.ntc.selenium.core.newDrivers.elementType.Button)

Example 2 with Button

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();
}
Also used : Button(com.capgemini.ntc.selenium.core.newDrivers.elementType.Button)

Example 3 with Button

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();
}
Also used : Button(com.capgemini.ntc.selenium.core.newDrivers.elementType.Button)

Example 4 with Button

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();
}
Also used : Button(com.capgemini.ntc.selenium.core.newDrivers.elementType.Button)

Example 5 with Button

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();
}
Also used : Button(com.capgemini.ntc.selenium.core.newDrivers.elementType.Button)

Aggregations

Button (com.capgemini.ntc.selenium.core.newDrivers.elementType.Button)19 WebDriverWait (org.openqa.selenium.support.ui.WebDriverWait)3