使用Python绑定发送密钥控件在Selenium中单击
作者:互联网
我需要使用Selenium在新标签中打开链接.
那么是否可以在Selenium中执行ctrl单击元素以在新选项卡中打开它?
解决方法:
使用带key_down的ActionChain按控制键,使用key_up释放它:
import time
from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.keys import Keys
driver = webdriver.Chrome()
driver.get('http://google.com')
element = driver.find_element_by_link_text('About')
ActionChains(driver) \
.key_down(Keys.CONTROL) \
.click(element) \
.key_up(Keys.CONTROL) \
.perform()
time.sleep(10) # Pause to allow you to inspect the browser.
driver.quit()
标签:python,selenium,selenium-webdriver,functional-testing 来源: https://codeday.me/bug/20190926/1821153.html