我试图使用selenium将js代码插入到网站中。
我知道我想使用以下导入语句,
import org.openqa.selenium.JavascriptExecutor
但这并没有安装,
"org.openqa.selenium.JavascriptExecutor" is not accessed
Import "org.openqa.selenium.JavascriptExecutor" could not be resolved
在哪里安装模块或如何解决问题
您已经标记了python,并且使用Selenium python客户端,除了from selenium import webdriver
之外,您不需要任何额外的导入作为同步和异步执行JavaScript的方法,即
execute_script()
execute_async_script()
是开箱即用的。
在使用Selenium Java客户端时,您还需要导入以下内容:
import org.openqa.selenium.JavascriptExecutor;