I\'m using Java to create selenium test cases. My system is based on portlets connected to each other. I\'m using \"selectFrame\" command to select the portlet.
I tr
You can switch to a frame, using its name or id easily:
driver.switchTo().frame("frame_name");
When you have selected a frame to switch to another frame you have to switch to the parent or root first with something like:
driver.switchTo().defaultContent();
driver.switchTo().frame("other_frame_name");