WebDriver 鼠标滑动操作


selenium Actions 动作操作,鼠标键盘...

Actions actions = new Actions(driver);创建一个动作

Action action = null;

actions.clickAndHold(elment1). moveToElement(element2,0,500).release() ;

elment1 鼠标滑动对象,

element2目标对象,

clickAndHold() 滑动

moveToElement,滑动的路径

release(),消除鼠标状态

action =actions.build();

action .perform();执行该动作

你可能感兴趣的:(htmlunit,htmlunit,selenium,htmlunitdriver)