@Test
public void RightClick() throws Exception
public void RightClick() throws Exception
{
driver.get("http://seleniumsubbu.blogspot.in/");
Thread.sleep(3000);
Actions act=new Actions(driver);
act.contextClick(driver.findElement(By.linkText("Quiz"))).perform();
}
driver.get("http://seleniumsubbu.blogspot.in/");
Thread.sleep(3000);
Actions act=new Actions(driver);
act.contextClick(driver.findElement(By.linkText("Quiz"))).perform();
}