the question like the title
|
The following locator should select the active element in the document:
If a form field or similar element has focus, then it should be the active element. Hope this helps. |
|||||||
|
|
As AlistairH mentions, you can use
Note that the above relies on the element having a unique |
|||
|
|
Another way to test (assuming you are using JQuery or Sizzle) is to use a simple library I wrote which allows Selenium tests to query the DOM using the :focus selector such as .is(':focus') or $(':focus'). For more information, see http://blog.mattheworiordan.com/post/9308775285/testing-focus-with-jquery-and-selenium-or where I explain the reason why Selenium test for :focus don't work out of the box, and how to fix this. |
|||
|
|
|
source code: selenium code: 1 method: String searchValue=selenium.getEval("var test=document.activeElement;"); 2 method: String testvalue=selenium.getText("css=#div textarea[class='left_to_right']:focus"); |
|||
|
|