-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathTest0.java
More file actions
30 lines (20 loc) · 796 Bytes
/
Test0.java
File metadata and controls
30 lines (20 loc) · 796 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
package actions;
import java.util.concurrent.TimeUnit;
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;
public class Test0 {
public static void main(String[] args) throws InterruptedException {
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
driver.get("https://www.ebay.com/");
driver.manage().timeouts().implicitlyWait(10,TimeUnit.SECONDS);
WebElement ele = driver.findElement(By.xpath("(//a[text()='Electronics'])[2]"));
Actions a=new Actions(driver);
a.moveToElement(ele).perform();
Thread.sleep(3000);
driver.findElement(By.xpath("//a[text()='Apple']")).click();
}
}