我的Javascript没有使用Selenium在我的页面中执行。
我的代码:
// Create a driver instance for chromedriver
IWebDriver driver = new ChromeDriver();
IJavaScriptExecutor js = (IJavaScriptExecutor)driver;
driver.Manage().Window.Size = new Size(1100, 1100);
driver.Navigate().GoToUrl("http://www.google.com/");
js.ExecuteScript("function reloadScrollBars() { document.documentElement.style.overflow = 'auto'; document.body.scroll = 'yes';} function unloadScrollBars(){ document.documentElement.style.overflow = 'hidden'; document.body.scroll = 'no';}");
任何人都可以分享为什么它不执行的任何知识吗?
这有效
js.ExecuteScript("return document.body.style.overflow = 'hidden';");