forked from nbhat1/Selenium-JavaCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestMouseOver.java
More file actions
45 lines (28 loc) · 1 KB
/
Copy pathTestMouseOver.java
File metadata and controls
45 lines (28 loc) · 1 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
package main.webdriver.mousehover;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.interactions.Actions;
public class TestMouseOver {
public static void main(String[] args) {
/*
* MouseOver
* Drag and Drop
* Sliders
* Resizable element
* Keyboard
* right click
*
*/
System.setProperty("webdriver.gecko.driver", System.getProperty("user.dir") + "\\GecoDriver\\geckodriver.exe");
WebDriver driver = new FirefoxDriver();
driver.navigate().to("https://www.flipkart.com/");
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
WebElement menu = driver.findElement(By.xpath("//*[@id='container']/div/header/div[2]/div/ul/li[3]/a/span"));
Actions action = new Actions(driver);
action.moveToElement(menu).perform();
driver.findElement(By.linkText("Boots")).click();
}
}