嗨,我有一个 emun,它将通过 if 语句运行测试。
public enum Test_Criteria
{
Pass,
Warning,
Fail
}
在它运行 if 语句之后
if (driver.Url.Contains("Postcode.aspx?type=billing&mode=guest"))
{
return Test_Criteria.Pass;
}
else
{
return Test_Criteria.Fail;
}
我正在获取无法访问的代码,以便直接在下面进行下一个测试
driver.FindElement(By.Id("Pagecontent_TextBoxPostCode")).SendKeys("#####");
让程序在返回后继续代码的最明智的方法是什么。谢谢