kgress / scaffold

A Java based Selenium WebDriver abstraction
MIT License
4 stars 7 forks source link

Add actions to BasePage #36

Closed kgress closed 4 years ago

kgress commented 4 years ago

Summary

To give users some additional control of their page objects, we should add the Actions object to the BasePage. Actions will allow users to send keys without needing an input web element (in the event a key needs to be pressed, like escape) or even refresh.

A/C