我可以使用 Selenium 访问 DOM 对象吗?
我来自 QuickTest Pro 背景,我可以使用 .object 方法获取任何元素的 DOM 对象。 我想知道 Selenium RC 中的等效项是什么。
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.
你当然可以。 真正的问题是:你想用它做什么? 查看 getEval() 命令。 它可以评估任何 JavaScript 并以字符串格式返回结果。 这意味着您无法将完整的 DOM 对象返回到 Java/C#/perl/etc 中,但您可以返回它的属性(即:innerHTML 等)。
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).