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:

  1. Assert webpage content
  2. Click the button that shows the iFrame
  3. Selected the iFrame

    selenium.selectFrame("iFrameName");  
    
  4. Assert the content of the iFrame
  5. Unselected the iFrame

    selenium.selectFrame("relative=up");  
    
  6. 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!

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.