活跃元素是什么意思?

时间:2013-05-29 05:19:49

标签: selenium-webdriver

在浏览Selenium WebDriver的Ruby文档时: http://selenium.googlecode.com/svn/trunk/docs/api/rb/Selenium/WebDriver/TargetLocator.html#active_element-instance_method

我遇到了方法active_element,它获取了活动元素。但是我不明白活动元素是什么意思?有人可以解释一下吗?

1 个答案:

答案 0 :(得分:1)

不确定为什么它不在Ruby文档中,但在C#和Java的文档中,这里是active element的定义方式。 Source here

the element that currently has the focus, or the body element if no element with focus can be detected.

Java source进一步说

This matches the semantics of calling "document.activeElement" in Javascript.