当我在 python 中使用 TouchActions 时,错误是
消息:未知命令:在 W3C 模式下无法调用非 W3C 标准命令
有了这个,ActionChains 类运行良好。这是我的python代码:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
#from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.touch_actions import TouchActions
mobile_emulation = { "deviceName": "Nexus 5" }
options = Options()
options.add_argument('--headless')
options.add_experimental_option('mobileEmulation', mobile_emulation)
driver = webdriver.Chrome(options=options)
driver.get("http://example.com/")
element = driver.find_element(By.TAG_NAME, 'body')
actions = TouchActions(driver)
actions.tap(element)
#actions.double_tap(element)
#actions.flick(10, 10)
actions.perform()
driver.quit()
- 硒 4.1.0
- ChromeDriver 97.0.4692.71
- 谷歌浏览器 97.0.4692.71
我该如何解决?