php-webdriver icon indicating copy to clipboard operation
php-webdriver copied to clipboard

Feature Request: Actions builder

Open robocoder opened this issue 2 years ago • 0 comments

The Actions API is pretty low level. We should consider adding a builder to make it more accessible.

Example:

$session->actions
        ->moveToElement($clickable)
        ->pause(1)
        ->clickAndHold()
        ->pause(1)
        ->sendKeys('abc')
        ->perform();

robocoder avatar Dec 05 '23 20:12 robocoder