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
- Google Chrome 97.0.4692.71
どうすれば修正できますか?