-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxpath.txt
More file actions
27 lines (10 loc) · 702 Bytes
/
xpath.txt
File metadata and controls
27 lines (10 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
By addBabySelector = By.xpath("//*[@id=\"panel0\"]/div/div/div/section/div[4]/div[2]/div[1]/div[1]/div/div[2]/section/div[5]/button[1]");
@FindBy(xpath = "//*[@id=\"panel0\"]/div/div/div/section/div[4]/div[2]/div[1]/div[1]/div/div[2]/section/div[5]/button[1]")
private WebElement bAddBabies;
[FindsBy(How = How.XPath, Using = "//*[@id=\"sidebar\"]/div/div/div/div/div[2]/div[3]/div/div[4]/div/div[1]")]
public IWebElement date;
private void setOptions(){
driver.findElement(By.xpath("//*[@id=\"journey\"]/label[2]")).click();
driver.findElement(By.xpath("//*[@id=\"sf\"]/div[1]/div[2]/div/div[1]/label")).click();
}
By.xpath("//div[2]/div/div/div[1]/div[2]/div[2]/div/div[1]/input")