python
1for url in urls: 2 try: 3 driver.get(url) 4 sleep(random.uniform(2.0,5.0)) 5 driver.find_element_by_css_selector('.btn-default').click() 6 7 except ElementNotInteractableException: 8 continue 9
としたのにもかかわらず。
エラー NameError: name 'ElementNotInteractableException' is not defined
と表示されてしまいます.
exceptしたいエラーは以下のように表示されています.
selenium.common.exceptions.ElementNotInteractableException: Message: element not interactable
エラー名が一致していないのでしょうか。
ご教示願います.
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/04 04:09