我正在尝试从网站上抓取数据,有一个URL可以链接到我的特定页面,那里有一些项目的链接,如果单击这些链接,它将在一个新选项卡中打开,我可以提取那里的数据,
但是提取数据后,我想关闭选项卡,返回主页并单击另一个链接。
我正在使用带有chrome web驱动程序的硒。我尝试了以下代码:
#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.
如何使用Selenium和python关闭新建的标签页?
答案 0 :(得分:1)
您可以尝试此解决方案。
# 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/