wiselin 发表于 2022-6-21 16:29:04

问个关于selenium里WebDriverWait抛出异常的问题

代码:
WebDriverWait(driver,10,1,ignored_exceptions=None).until(EC.presence_of_element_located((By.ID,'out')),message="")

WebDriverWait里ignored_exceptions这个选项,文档里描述默认是NoSuchElementExeception,如果我想加入一个比如TimeoutException,网上是说写成元组,即ignored_exceptions=(TimeoutException),但是这样写就会报错:TypeError: catching classes that do not inherit from BaseException is not allowed,请问怎样写才对呢?

suchocolate 发表于 2022-6-22 01:00:37

代码发全
页: [1]
查看完整版本: 问个关于selenium里WebDriverWait抛出异常的问题