InterviewSolution
Saved Bookmarks
| 1. |
With the help of code snippets, explain how we can create right-click and mouse hover actions in Selenium. |
|
Answer» The FOLLOWING CODE can replicate right-click ACTION: actions action = newActions(driver);WebElement element = driver.findElement(By.id("elementId")); action.contextClick(element).perform();The following code can replicate mouse HOVER action: actions action = newActions(driver);WebElement element = driver.findElement(By.id("elementId"));action.moveToElement(element).perform(); |
|