Blame view

src/test/java/com/essa/pageObject/PODocumentary/PODocumentaryListPage.java 636 Bytes
d15bbfd4   Administrator   1024byzengjin
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;

  }