0
Actions actions = new Actions(getDriver());
Robot robot = null;
try {
robot = new Robot();
} catch (AWTException e) {
e.printStackTrace();
}
robot.mouseMove(700,700);
actions.click().build().perform();
위 코드를 시도했지만 작동하지 않습니다. 마우스가 원하는대로 움직이지만 클릭하지는 않습니다. "actions.click().build().perform()"
아무 것도하지 않았습니다.웹 페이지의 아무 곳이나 클릭하는 방법
다른 생각이 있으십니까?
actions.click(). build(). perform(); 두 번째 예에서 – Anoretu