Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to convert webdriver/selenium's org.openqa.selenium.webelement to org.w3c.dom.domelement?

share|improve this question

1 Answer

up vote 1 down vote accepted

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.

share|improve this answer
hi Jim, I have used executeScript() but seems like it's lot of overhead to be running on each page loaded (for my case, I had to normalize the html to a specific format for all loaded page to take care of text nodes etc). Therefore, I am staying away from any Javascript dependence. – Kim Jong Woo Apr 25 '11 at 23:31
The overhead actually isn't that much, depending on what you want to do. More context might be helpful. I'll let you in on a little secret: most of the WebDriver functionality for most drivers is implemented in JavaScript anyway. Sorry it's not the answer you wanted to hear, but the answer to your question (as asked) is still, "No, you can't convert WebElement to org.w3c.dom.Element." I was simply trying to provide you with a workaround to at least get you the functionality you wanted. – JimEvans Apr 26 '11 at 12:35
Hi Jim! Finally, a core contributer on SO! thank you for that insight you just saved me a months of work, I will pursue Javascript approach once more. Is there a wiki page explaining more about how Javacript plays a role in WebDriver functionality. So basically browser.findElement(By.id("menu")) is really browser.executeScript(document.findElementById("menu"))? – Kim Jong Woo Apr 29 '11 at 1:34
I reported some bugs with executeScript() on windows os in fall 2010. This isn't reproduced in linux but basically, too many ports are opened every time executeScript() runs (see stackoverflow.com/questions/4330459/…). Contextwise, I am running tests on 25 firefox webdriver instances, which clicks on everything and etc. I realized that text nodes in firefox are not selectable via By.xpath....so I had to run executeScript("javascriptFunctionToModifyTextNodescurrentDOMpage()"); on NavigationFinished event. – Kim Jong Woo Apr 29 '11 at 1:48
Also, in response to :"Any #selenium #webdriver element location achievable only by using XPath should make us consider an API change." I have been worried about this for over the past two years and couldn't select the element without xpath on some DOM pages.anyways, thank you for reading my long comments...I am just excited to be back working on my project again with Javascript to find and select elements on Firefox Webdriver instance, nstead relying on org.openqa.selenium.webelement....I've avoided using executeScript() on each page that is loaded on webdriver ff instance fear of overhead. – Kim Jong Woo Apr 29 '11 at 2:03
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.