我是 webdriver 的初学者,开始学习页面对象模型
这是我使用的代码:
public static class test1
{
public static ISearchContext Driver
{
get
{
return webDriver;
}
}
}
public static class test2
{
public static test3 test3
{
get
{
var Test3 = new test3();
PageFactory.InitElements(test1.Driver, Test3 );
return Test3 ;
}
}
}
public class test3
{
public void SwitchToFrame()
{
test1.Driver.SwitchTo().Frame(webDriver.FindElement(By.XPath("some xpath")));
}
}
这不断抛出错误。
SwitchTo
从来没有作为选项给出,任何人都可以告诉我为什么,请告诉我如何获得SwitchTo
作为选项。提前致谢