听起来您现在正在使用遥控器设置,是吗?您应该能够从该代码中实例化 WebDriver 实例,但您需要引用 WebDriver dll。您将需要实例化浏览器驱动程序对象的实例(即:FirefoxDriver、InternetExplorerDriver、ChromeDriver 等),然后将您的 IWebDriver“驱动程序”属性设置为等于该实例。然后创建一个名为“js”(或任何您想要的)的接口对象作为 IJavaScriptExecutor 对象并调用非静态方法“ExecuteScript”或“ExecuteAsyncScript”(在您的情况下)。
我下面的代码在 C#.NET 中(假设您使用的是 NUnit)。你必须找到 Python 实现,因为我不知道那种语言。
类数据成员:
private IWebDriver driver;
private StringBuilder verificationErrors;
private string baseURL;
代码:
driver = new FirefoxDriver(new FirefoxProfile());
baseURL = "http://???"; // replace "???" with website domain
ISelenium selenium = new WebDriverBackedSelenium(driver, baseURL);
selenium.Start();
IJavaScriptExecutor js = driver as IJavaScriptExecutor;
js.ExecuteScript("$('#id').click();"); // assumes JQuery is used in page
js.ExecuteAsyncScript(...);