将在线设备与硒一起使用时操作不起作用

时间:2019-09-30 15:31:49

标签: java selenium testing automated-tests

我目前正在使用针对我的在线设备的kobiton来自动化我的测试。但是,在尝试使用ios在线设备滑动屏幕时遇到问题。

我使用的是与我用于网络自动化的Java代码相同的代码,它似乎适用于android(尽管我在查看这些会话以进行确认时遇到问题)

Actions action = new Actions(driver);
    action.clickAndHold(first_page_paragraph);
    //you need to release the control from the test
    Thread.sleep(2000);
    //action.moveToElement(second_selection).release();
    action.build().perform();

我一直收到以下错误

org.openqa.selenium.WebDriverException: An unknown server-side error occurred while processing the 
command. Original error: Unhandled endpoint: /session/F900A134-DCC3-424F-A037- 
032986694B66/buttondown -- http://localhost:50207/ with parameters {
wildcards =     (
    "session/F900A134-DCC3-424F-A037-032986694B66/buttondown"
);
} (WARNING: The server did not provide any stacktrace information)

我只使用硒,不知道如何补救

0 个答案:

没有答案