C# selenium报错Unhandled exception. OpenQA.Selenium.WebDriverException: javascript error: Cannot read property 'innerText' of undefined


解决方法:执行脚本之前,显示等待60s直到页面元素加载完成

WebDriverWait wait = new WebDriverWait(this.driver, TimeSpan.FromSeconds(60));
wait.Until(d => d.FindElement(By.CssSelector("div[class=swiper-slide] a")));
this.driver.ExecuteScript(JSstring);


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM