如何使用硒打开新标签?

时间:2019-06-14 21:31:13

标签: python macos selenium firefox selenium-webdriver

使用MAC OS尝试使用Selenium firefox Webdriver打开新标签页

url = "https://google.com" 

mail = wd.Firefox()  

mail.get(url)

 time.sleep(1)

 actions = ActionChains(mail) mail.find_element_by_xpath("/html/body/div[2]/div[2]/div[1]/h2/span[2]/span[1]").click() 

time.sleep(1) 

ActionChains(mail).key_down(Keys.COMMAND).send_keys('t').key_up(Keys.COMMAND).perform()  

mail.close()

 mail.quit()

1 个答案:

答案 0 :(得分:0)

如果您使用的是chrome / firefox,则可以运行此javascript。

window.open("https://google.com","_blank")

Python:

driver.execute_script("window.open('https://google.com','_blank')")