简体   繁体   中英

Selenium web driver is not going to next automatically opened tab in chrome

单击网页上的登录按钮后,打开一个新选项卡,要求登录,但selenium Web驱动程序无法识别元素,并且在chrome中中止执行

please check this out:

ArrayList<String> tabs = new ArrayList<String> (driver.getWindowHandles());
driver.switchTo().window(tabs.get(1));
driver.close();
driver.switchTo().window(tabs.get(0));

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM