使用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()
答案 0 :(得分:0)
如果您使用的是chrome / firefox,则可以运行此javascript。
window.open("https://google.com","_blank")
Python:
driver.execute_script("window.open('https://google.com','_blank')")