我在 Selenium Xunit 2.0 中来自不同集合类的测试并行运行,并且只调用一次 dispose 方法。我想在每次测试运行后调用来处理该方法,即使它们并行运行。
[TestClass]
public class Basic : IDisposable
{
protected void StopDriver()
{
#capture screenshot here
}
public void Dispose()
{
StopWebDriver();
WebDriver.Dispose();
}
}