我遇到以下问题。
每次尝试找到此尺寸时,我都会尝试选择下一个尺寸:
| error, selenium.common.exceptions.NoSuchElementException: Message: Unable to
locate element: // * [@ id = "US-6"] |
我想避免脚本结尾 然后尝试点击
// * [@ id = "US -7 "]
无需中断脚本。
我不知道是否有可能。我真的需要帮助。
答案 0 :(得分:0)
您可以执行以下操作。
from selenium.common.exceptions import NoSuchElementException
try:
driver.find_element_by_xpath('//*[@id = "US-6"]')
except NoSuchElementException:
driver.find_element_by_xpath('// * [@ id = "US -7 "]')