Does anyone how to switch to a new window in selenium-webdriver?

I am hitting link in Facebook that launches a new window. I tried:

browser.switch_to.window

But that resulted in this error:

ERROR: Wrong number of Arguments 0 for 1

What should I pass to the method?

link|improve this question
feedback

1 Answer

Here is the code for switching to latest/new window:

//Java binding code

for(String windowHdl : driver.getWindowHandles()){
    driver.switchTo().window(windowHdl);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.