-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment144.java
More file actions
32 lines (20 loc) · 810 Bytes
/
Assignment144.java
File metadata and controls
32 lines (20 loc) · 810 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
25
26
27
28
29
30
31
32
package BasicsSelenium;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.interactions.Actions;
//WAP to launch amazon & hoverover account&list then click on signin?
public class Assignment144 {
public static void main(String[] args) {
ChromeDriver driver = new ChromeDriver();
driver.get("https://www.amazon.in/");
driver.manage().window().maximize();
WebElement H1 = driver.findElement(By.xpath("(//span[.='Hello, sign in'])")); // textsyntax -->
// "(//tagname[.=''])"
Actions s1 = new Actions(driver);
s1.moveToElement(H1).perform();
WebElement S2 = driver.findElement(By.xpath("(//span[.='Sign in'])"));
S2.click();
}
}