Friday, 4 August 2017

Code Example - Double Click

package com.practiceCode;

import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.testng.annotations.Test;

/**
 * @Blog Name : Selenium Code Example
 * @author Deepak Gupta
 * @Created Date 4-08-2017
 *
 */
public class DoubleClick extends SuperTestNG {

@Test
public void testDoubleClick() {
try {
driver.get("http://only-testing-blog.blogspot.in/2013/09/testing.html");
WebElement ele = driver.findElement(By.xpath("//*[text()='Saturday, 21 September 2013']"));
Actions act = new Actions(driver);
act.doubleClick(ele).build().perform();
Thread.sleep(3000);

} catch (Exception e) {
e.printStackTrace();
}
}
}

No comments:

Post a Comment

Code Example - File Download By Robot Class In Firefox Browser

Exported from Notepad++ package com . practiceCode ; import java . awt . AWTException ; import java . awt . Robot ; import j...