I am trying to use selenium ide to duplicate an action. The action is clicking on a link that open a new window. How do you make selenium ide focus on the new window instead of
Consider this: would you prefer to just remove the target="_blank" attribute? For me this has been a solution:
target="_blank"
getEval this.page().findElement('link=Facebook').removeAttribute('target');
Staying within the same window has some advantages in Selenium IDE, seeing it doesn't support target blank.