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

what is this command for?

share|improve this question

3 Answers

You might think that Selenium.selectWindow() would be all you need. But that simply tells Selenium which window you want all the Selenium commands to go to. One of the commands you can send to it is "give this (currently selected) window focus".

It's a bit confusing, because Windows (and other systems) sometimes refer to the "selected window" - the one that's on top of the others, or the "active" window. Here, we call it the window that "has focus". It's the window where keyboard events will be directed. Inside a window, individual widgets (text fields, scroll bars, buttons) can have focus too.

So windowFocus() is like clicking on the title bar of the window that Selenium is currently working with.

share|improve this answer

From the Selenium Documentation

windowFocus()

Gives focus to the currently selected window

share|improve this answer

In my experience, getting window focus using the Selenium windowFocus() method is sometimes not effective. I find myself sometimes using aJavascriptExecutor, then use the Selenium switchTo() method to switch to the handle that needs focus and then execute :

((JavascriptExecutor) webDriver).executeScript("window.focus();");
share|improve this answer

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.