Initial commit ui-develop
This commit is contained in:
parent
9dae0a0e6a
commit
c94f15f37f
17
src/main/java/pages/HelpdeskBasePage.java
Normal file
17
src/main/java/pages/HelpdeskBasePage.java
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
package pages;
|
||||||
|
|
||||||
|
import elements.MainMenu;
|
||||||
|
import org.openqa.selenium.WebElement;
|
||||||
|
import org.openqa.selenium.support.FindBy;
|
||||||
|
import org.openqa.selenium.support.PageFactory;
|
||||||
|
|
||||||
|
/** Элементы общие для системы Helpdesk */
|
||||||
|
public class HelpdeskBasePage extends AbstractPage {
|
||||||
|
public HelpdeskBasePage() { PageFactory.initElements(driver, this);}
|
||||||
|
|
||||||
|
/** Доступ к элементам главного меню */
|
||||||
|
public MainMenu mainMenu() {
|
||||||
|
return new MainMenu(driver);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user