本文介绍了JavascriptExecutor无法解析为一种类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我遇到以下错误
JavascriptExecutor cannot be resolved to a type
我正在使用以下内容
((JavascriptExecutor) driver).executeScript("arguments[0].scrollIntoView()", webelement);
推荐答案
您必须从Java API导入JavascriptExecuter类.那么您的错误将得到纠正.
you have to import JavascriptExecuter class from java API. then your error will be rectified.
希望有帮助
这篇关于JavascriptExecutor无法解析为一种类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!