前提・実現したいこと
webスクレイピングです。
selenium、pythonを用いて下記のサイトの「詳細情報を見る」のURLを抜き出していきたいのですが、うまくいきません。
発生している問題・エラーメッセージ
selenium.common.exceptions.TimeoutException: Message:
該当のソースコード
python
1elem = wait.until(expected_conditions.presence_of_element_located((By.XPATH,"//*[@id='searchResult']/ul/li[1]/table/tbody/tr[3]/td[3]/a"))) 2csvlist = [] 3csvlist.append(elem.get_attribute('onclick')) 4writer.writerow(csvlist)
試したこと
補足情報(FW/ツールのバージョンなど)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/21 09:44
2020/05/21 09:49
2020/05/21 09:55