前提・実現したいこと
最大待機時間とcss_selectorを指定して、「https://www.yahoo.co.jp/」から全てのimgタグ情報をseleniumで取得したい。
発生している問題・エラーメッセージ
TimeoutException Traceback (most recent call last) <ipython-input-6-c53493828f24> in <module> ----> 1 wait.until(EC.visibility_of_all_elements_located((By.CSS_SELECTOR, 'img'))) C:\work\anaconda\lib\site-packages\selenium\webdriver\support\wait.py in until(self, method, message) 80 if time.time() > end_time: 81 break ---> 82 raise TimeoutException(message, screen, stacktrace) 83 84 def until_not(self, method, message=''): TimeoutException: Message:
該当のソースコード
python
1from selenium import webdriver 2from selenium.webdriver.support.ui import WebDriverWait 3from selenium.webdriver.support import expected_conditions as EC 4from selenium.webdriver.common.by import By 5from selenium.common.exceptions import TimeoutException 6import time 7import datetime 8 9userdata_dir = f'c:/Users/xxx/' 10options = webdriver.ChromeOptions() 11options.add_argument('--user-data-dir=' + userdata_dir) 12options.add_argument('--start-maximized') 13driver =webdriver.Chrome(executable_path='c:/Users/xxx/chromedriver.exe',options=options) 14 15wait = WebDriverWait(driver, 10) 16driver.get("https://www.yahoo.co.jp/") 17wait.until(EC.visibility_of_all_elements_located((By.CSS_SELECTOR, 'img')))
確認したこと
確認したことは下記A,Bの2つ
A.
待機時間を指定しない
python
1driver.find_elements_by_css_selector('img')
は実行できます(imgタグ情報のリストを取得できます)。
B.
visibility_of_all_elements_locatedのソースにある
python
1if _element_if_visible(element, visibility=False): 2 return False
でreturn Falesが発生しているため、
untilのソースにある
python
1value = method(self._driver) 2if value: 3 return value
のところで、リストが返せずにいると思います。
補足情報(FW/ツールのバージョンなど)
言語:python(バージョン3.8.8)
ライブラリ:selenium(バージョン3.141.0)
実行環境:jupyter notebook(バージョン6.3.0)
あなたの回答
tips
プレビュー