package com.essa.pageObject.PODocumentary; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import com.essa.framework.BasePage; /** * @author Administrator *PO跟单任务列表页面 */ public class PODocumentaryListPage extends BasePage { public PODocumentaryListPage(WebDriver driver) { super(driver); } /* * 元素定位 */ @FindBy (xpath = "//*[contains(text(),'高级查询')]") WebElement advancedQuery;//高级查询 @FindBy (xpath = "//*[contains(@placeholder,'请输入PO单号')]") WebElement OrderNo; }