This repository has been archived by the owner on Jul 29, 2024. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix (element): Allow ElementFinder to be passed to actions directly.
Previously, do to an action such as drag and drop, one would have to use `element(by.foo).find()`. Now, just passing `element(by.foo)` works. For example: ```javascript browser.actions().doubleClick(element(by.id('mybutton'))).perform(); ```
- Loading branch information