I am coming from a QuickTest Pro background where I can get to any element's DOM object with the .object method. I want to know what the equivalent is in Selenium RC.
Asked
Active
Viewed 3,833 times
1 Answers
3
Sure you can. The real question is: what do you want to do with it? Check out the getEval() command. It can evaluate any JavaScript and return the result in a String format. That means you can't get the full DOM object back in to Java/C#/perl/etc, but you can get back attributes of it (ie: innerHTML, etc).

Patrick Lightbody
- 4,424
- 2
- 28
- 38
-
1Eg. can I access a `player` object and detect whether it is playing or not? – Augustin Riedinger Jun 17 '16 at 15:59