本文介绍了如何自动化拖拽&使用 Selenium WebDriver Java 删除功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
如何自动化拖拽&在 java 中使用 Selenium WebDriver
删除功能?
How to automate drag & drop functionality using Selenium WebDriver
in java?
推荐答案
有一个页面记录了高级用户交互;其中有很多关于如何生成一系列动作的很好的例子,你可以找到在这里
There is a page documenting Advanced User Interactions; which has a lot of great examples on how to generate a sequence of actions, you can find it here
// Configure the action
Actions builder = new Actions(driver);
builder.keyDown(Keys.CONTROL)
.click(someElement)
.click(someOtherElement)
.keyUp(Keys.CONTROL);
// Then get the action:
Action selectMultiple = builder.build();
// And execute it:
selectMultiple.perform();
或
Actions builder = new Actions(driver);
Action dragAndDrop = builder.clickAndHold(someElement)
.moveToElement(otherElement)
.release(otherElement)
.build();
dragAndDrop.perform();
这篇关于如何自动化拖拽&使用 Selenium WebDriver Java 删除功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!