如何使用硒,铬驱动程序和python关闭新构建的选项卡



我正在尝试从网站抓取数据,有一个网址让我登陆一个特定的页面,那里有一些项目的链接,如果我点击这些链接,它会在新选项卡中打开,我可以从那里提取数据,

但是提取数据后,我想关闭选项卡返回主页并单击另一个链接。

我正在使用带有铬网络驱动程序的硒。我尝试了以下代码:

#links which lands me to a new tab
browser.find_element_by_xpath('//*[@id="data"]/div[1]/div[2]/a').click()
browser.switch_to.window(browser.window_handles[0])
browser.close() #it closes the main page, not the new tab I want
and following code,
browser.find_element_by_css_selector('body').send_keys(Keys.CONTROL + 'w')  #this code didn't work.

如何使用硒和蟒关闭新构建的选项卡?

您可以尝试此解决方案。

# New tabs will be the last object in window_handles
driver.switch_to.window(driver.window_handles[-1])
# close the tab
driver.close()
# switch to the main window
driver.switch_to.window(driver.window_handles[0])  

参考: http://antlong.com/common-operations-working-with-tabs-in-webdriver/

相关内容

  • 没有找到相关文章

最新更新