在使用 Selenium 进行 Web 自动化测试时,经常会遇到各种异常情况。了解这些异常并掌握如何处理它们对于编写稳定可靠的测试脚本至关重要。本文将详细介绍 Selenium 中常见和不常见的异常类及其使用场景。
Selenium 常见异常类列表
序号异常类基类描述1selenium.common.exceptions.WebDriverExceptionexceptions.ExceptionWebDriver 基础的异常类。所有其他异常类均继承自该类。2selenium.common.exceptions.TimeoutExceptionselenium.common.exceptions.WebDriverException当一条命令在规定时间内未完成时抛出该异常。3selenium.common.exceptions.StaleElementReferenceExceptionselenium.common.exceptions.WebDriverException当引用的元素已经过时(即不再存在于页面的 DOM 中)时抛出该异常。4selenium.common.exceptions.NoSuchElementExceptionselenium.common.exceptions.WebDriverException当无法找到元素时抛出该异常。5selenium.common.exceptions.NoSuchAttributeExceptionselenium.common.exceptions.WebDriverException当元素的属性无法找到时抛出该异常。6selenium.common.exceptions.NoAlertPresentExceptionselenium.common.exceptions.WebDriverException当尝试操作一个不存在的 alert 弹窗时抛出该异常。7selenium.common.exceptions.NoSuchFrameExceptionselenium.common.exceptions.InvalidSwitchToTargetException当尝试切换到一个不存在的 iframe 窗口时抛出该异常。8selenium.common.exceptions.InvalidElementStateExceptionselenium.common.exceptions.WebDriverException当元素状态无效时抛出该异常。9selenium.common.exceptions.ElementNotSelectableExceptionselenium.common.exceptions.InvalidElementStateException当尝试选择一个不可选的元素时抛出该异常。10selenium.common.exceptions.ElementNotVisibleExceptionselenium.common.exceptions.InvalidElementStateException当元素存在于 DOM 树中但不可见时抛出该异常。
Selenium 不常见异常类
序号异常类基类描述1selenium.common.exceptions.ErrorInResponseExceptionselenium.common.exceptions.WebDriverException当服务器端出现错误时抛出该异常,通常由 Firefox 插件或远程 server 引起。2selenium.common.exceptions.ImeActivationFailedExceptionselenium.common.exceptions.WebDriverException当输入法激活失败时抛出该异常。3selenium.common.exceptions.ImeNotAvailableExceptionselenium.common.exceptions.WebDriverException当输入法不支持时抛出该异常。4selenium.common.exceptions.InvalidCookieDomainExceptionselenium.common.exceptions.WebDriverException当试图在不同的 domain 添加 cookie 时抛出该异常。5selenium.common.exceptions.InvalidSelectorExceptionselenium.common.exceptions.NoSuchElementException当选择器未返回任何 web 元素时抛出该异常。6selenium.common.exceptions.InvalidSwitchToTargetExceptionselenium.common.exceptions.WebDriverException当尝试切换到不存在的窗口或框架时抛出该异常。7selenium.common.exceptions.MoveTargetOutOfBoundsExceptionselenium.common.exceptions.WebDriverException当提供给 ActionChains 的可移动目标无效(如超出文件范围)时抛出该异常。8selenium.common.exceptions.NoSuchWindowExceptionselenium.common.exceptions.InvalidSwitchToTargetException当尝试切换到一个不存在的窗口时抛出该异常。9selenium.common.exceptions.RemoteDriverServerExceptionselenium.common.exceptions.WebDriverException当远程 WebDriver 服务器出现错误时抛出该异常。10selenium.common.exceptions.UnableToSetCookieExceptionselenium.common.exceptions.WebDriverException当驱动程序无法设置 cookie 时抛出该异常。11selenium.common.exceptions.UnexpectedAlertPresentExceptionselenium.common.exceptions.WebDriverException当意外的警告弹窗出现时抛出该异常。12selenium.common.exceptions.UnexpectedTagNameExceptionselenium.common.exceptions.WebDriverException当辅助类没有获取到预期的 web 元素时抛出该异常。
结语
掌握 Selenium 中的异常类及其处理方法,可以大大提高自动化测试脚本的健壮性和稳定性。希望本文能帮助你更好地理解和应对 Selenium 中的各种异常情况,从而编写出更高质量的测试代码。
版权归原作者 blues_C 所有, 如有侵权,请联系我们删除。