I'm testing a web app, using X Virtual FrameBuffer and Selenium RC.
But I found a problem while testing the last update - it was added a iFrame to the app.
When I start selenium-server with xvfb, the elements within the iFrame (step 4) are not found...
I use the following command to start the server:
sudo xvfb-run java -jar selenium-server-1.0.3/selenium-server.jar -firefoxProfileTemplate firefoxProfile/
But if a start the server without xvfb, test is executed perfectly.
Command used without xvfb:
sudo java -jar selenium-server-1.0.3/selenium-server.jar -firefoxProfileTemplate firefoxProfile/
What I have implemented in the test:
- Assert webpage content
- Click the button that shows the iFrame
Selected the iFrame
selenium.selectFrame("iFrameName");- Assert the content of the iFrame
Unselected the iFrame
selenium.selectFrame("relative=up");- Continue asserting page content
Update: The iFrame is generated by clicking a button:
<input type="button" value="Add partaker" onclick="javascript: partakerDialog('/new/procId/13', 'Add')">
After clicking this button, in Firebug, I see that a new div was added to the layout, with the iFrame inside.
However, if I execute in the test:
selenium.getHtmlSource()
The returned html does not contain the generated div that I saw in Firebug.
So, the elements that I want to manipulate are not there.
Why is this happening? How can I get, through Selenium, the updated html elements?
Thank's!