我用touchstarttouchmove事件编写了一些Javascript代码。我想用硒测试。我只是用move方法发现了TouchActions类,而这正是我想要的。

我的测试使用RemoteWebDriver运行:

RemoteWebDriver remoteWebDriver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capabilities);


驱动程序将是ChromeDriver或最终是FirefoxDriver,而不是AndroidDriver

当我尝试使用以下方法初始化动作时:

TouchActions builder = new TouchActions(remoteWebDriver);


我收到强制转换错误:


java.lang.ClassCastException:org.openqa.selenium.remote.RemoteWebDriver无法转换为org.openqa.selenium.interactions.HasTouchScreen


有人知道我应该做什么吗?我需要添加一项功能吗?

最佳答案

因此,要做到这一点,首先需要将移动功能添加到驱动程序中(请参见Mobile Emulation):

Map<String, String> mobileEmulation = new HashMap<>();
mobileEmulation.put("deviceName", "Galaxy S5"); // Choose a device available in your version of chromimum
Map<String, Object> options = new HashMap<>();
options.put("mobileEmulation", mobileEmulation);
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
RemoteWebDriver remoteWebDriver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capabilities);


然后,当您需要触摸操作时,就需要“增强”驱动程序,以便对其进行投射:

TouchActions builder = new TouchActions(new Augmenter().augment(remoteWebDriver));

然后,您可以从该构建器执行builder.down(), move(), scroll(), up()...任何所需的操作。

10-02 08:27