我只是想从导入中创建一个Actions对象:
import org.openqa.selenium.interactions.Actions;
引发异常的代码行是这样的:
Actions action = new Actions(webdriver);
完整的错误消息是这样的:
Exception in thread "main" java.lang.ClassCastException: org.openqa.selenium.chrome.ChromeDriver incompatible with org.openqa.selenium.interactions.Actions
我不知道为什么这不起作用。它相对简单明了,其代码与在此站点上创建Actions对象的各种示例没有什么不同。