前提・実現したいこと
SeleniumでChromeのユーザープロファイルを指定して、タイムアウト設定を
したいのですが上手くいきません。該当のURLをずっと読み込んだままで"time out"
が出力できませんでした。この場合、どのような対応をしたらいいのでしょうか。
該当のソースコード
Python
1from selenium import webdriver 2 3options = webdriver.ChromeOptions() 4profile_path = "/Users/XXXX/AppData/Local/Google/Chrome/XXXX" 5options.add_argument(f"user-data-dir={profile_path}") 6driver = webdriver.Chrome(options=options) 7 8driver.set_page_load_timeout(5) 9 10try: 11 driver.get("https://httpstat.us/200?sleep=1000000000") 12except: 13 print("time out")
あなたの回答
tips
プレビュー