我想用硒測試我的Web應用程序。爲了測試我使用硒3.5.2,chromeWebDriver 2.33和鉻版本62.Selenium在SendKeys後打開新選項卡
問題是,我創建操作並調用sendKeys後,鉻打開幫助選項卡。我嘗試了不同的網頁,甚至在YouTube上。這裏是代碼:
Actions actions = new Actions(driver);
WebElement element = driver.findElement(By.Id("search_field"));
actions.sendKeys(element, "A").build().perform();
後perform()
鉻打開一個新的幫助選項卡。
謝謝你的回答!
element.sendKeys(「A」)方法會發生什麼?幫助標籤是否打開? – Grasshopper
https://sqa.stackexchange.com/questions/30150/chrome-62-sendkeys-seems-to-be-causing-chrome-settings-help-to-open –