Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在测试触摸设备的网站。其中一个页面具有“拉刷新”和“半拉”以显示搜索文本框。它类似于 iOS 设备上的邮件应用程序。
如何使用 Webdriver 测试此功能?
我认为这应该有效:
Actions builder = new Actions(driver); Action dragAndDrop = builder.clickAndHold(someElement) .moveToElement(otherElement) .release(otherElement) .build(); dragAndDrop.perform();
文件