27d9a429
suweicheng
开发梳理;
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
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;
}
|