Posts

Showing posts from September, 2022

How to open new window by right clicking on any link & click on any context menu options?

Right Click on webelement & click on second options from context menu.            @Test public static void newwindow() throws InterruptedException, AWTException {                      driver = new ChromeDriver(); driver.get("https://www.selenium.dev/documentation/webdriver/browser/windows/"); Thread.sleep(3000); Actions actions = new Actions(driver); WebElement elementLocator = driver.findElement(By.xpath("//*                                                                                                                     ...