NoSuchElementException' is not defined
PythonでSeleniumを扱う時の話
せっかく例外処理を書いたのに定義されてないって怒られる つづりは間違っていなさそうなとき
問題のコード
code:python
try:
~~
except NoSuchElementException:
~~
解決法
code:python
from selenium.common.exceptions import NoSuchElementException
try:
~~
except NoSuchElementException:
~~