Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to run a javascript function from a phpunit test with selenium and check the javascript returns true. I've looked into using runScript but it never seems to run (I've tested this by adding an alert to the code, but it never shows..).

My javascript needs to check the opacity of an element is 1, if not use setTimeout to run the function again. - What this code is basically trying to do is ensure an ajax call has been called (the element to be replaced goes to half opacity when being updated and back to full when updated)

Is runScript the correct function, or is there a better way to check the ajax has run? Here's the JS:

function seleniumCheckOpacity(elementId, counter) {
    if(counter >= 5) return false;
    else if($(elementId).opacity == 1) return true;
    else {
        counter++
        return setTimeout('seleniumCheckOpacity('+elemelementId+', '+counter+')', 500);
    }
}
share|improve this question
runScript or getEval is fine for this task, and in fact you can check without using the setTimeout, you can watch the value periodically using PHP's loop/sleep. – tszming Oct 19 '10 at 11:07

1 Answer

up vote 2 down vote accepted

I would suggest using waitForCondition and use the javascript you want to check on the opacity. This waitForX command will do the looping for you and then error if it fails or the test will carry on if it succeeds.

share|improve this answer
Docs says it all, in big red letters. wiki.openqa.org/display/SEL/waitForCondition – Ashley Oct 19 '10 at 13:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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