selenium初心者です
seleniumをpythonで実行した後マウスが動かなくなりました。
ですが、タッチパッドは動いているようです。
コードは以下の通り
from time import sleep from selenium import webdriver driver = webdriver.Chrome( executable_path='/Users/genge/Desktop/python_practice/tools/chromedriver_win32/chromedriver.exe' ) driver.get('https://www.google.co.jp') sleep(3) search_bar = driver.find_element_by_name('q') sleep(3) search_bar.send_keys('python') sleep(3) search_bar.submit() sleep(5) driver.quit()
osの再起動などを行ってみましたがどうも原因がわかりません。
「マウスが動かなくなった」という自分勝手なタイトルですがご教授いただけると幸いです。
あなたの回答
tips
プレビュー