我正在通过 Visual Studio 调试 Selenium 测试套件。我希望抛出/捕获的异常能够中断,因此我可以找出缺少的内容,但我是 C#/Visual Studio 的新手,我不知道该选择什么。
示例异常块:
The thread '<No Name>' (0x75ac) has exited with code 0 (0x0).
A first chance exception of type 'OpenQA.Selenium.NoSuchElementException' occurred in WebDriver.dll
A first chance exception of type 'OpenQA.Selenium.NoSuchElementException' occurred in Selenium.WebDriverBackedSelenium.dll
A first chance exception of type 'Selenium.SeleniumException' occurred in Selenium.WebDriverBackedSelenium.dll
The thread '<No Name>' (0x7250) has exited with code 0 (0x0).
我选择什么让它在那些第一次机会异常时停止,这样我就可以修复代码?
谢谢!