htmlelements
htmlelements copied to clipboard
Actions for typified elements
It will be very useful to provide actions for typified elements like WebDriver Actions for WebElements.
Any more info on this? The original link is now 404.
Yes, WebDriver repo has been moved. Here is the class I mentioned above: Actions.java.
Is what you were thinking now possible since TypifiedElements now implement WebElement? See #121
Yes, you can use WebDriver Actions with TypifiedElements since #121 is done. But it's not type safe. I mean, you are not preserved from calling something like this:
new Actions(driver).sendKeys(button, "some text").perform();