Is it possible to convert webdriver/selenium's org.openqa.selenium.webelement to org.w3c.dom.domelement?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
No, this is not possible given the architecture of the library. It is not guaranteed that any particular browser will expose its elements directly to the driver. However, you can pass a WebElement object as an argument to a JavaScript function via WebDriver.executeScript(). This would allow you to get to the W3C DOM element attributes and methods via JavaScript. |
|||||||||||
|