Answer the question
In order to leave comments, you need to log in
How to organize event chain processing in java?
Tell me how to organize the processing of the event chain / pipeline, i.e. we create a .build set of events (movement, mouse and keyboard presses) and then build().perform() is executed.
Here is an example from Selenuim
Actions action = new Actions(getDriver());
action.moveToElement(
findElement(org.openqa.selenium.By.className("v-window-wrap")),
5, 5);
action.clickAndHold();
action.moveByOffset(xOffset, yOffset);
action.release();
action.build().perform();
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question