instaclick / php-webdriver

W3C and Selenium 2 webdriver "thin client" for php 5.3+ and namespaces.
Other
436 stars 62 forks source link

Feature Request: Actions builder #125

Open robocoder opened 9 months ago

robocoder commented 9 months ago

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();