I'm able to acquire selenium object for the purpose of calling javascript:

WebDriverCommandProcessor wdcp = 
new WebDriverCommandProcessor(serverLink, driver);
DefaultSelenium sel = new DefaultSelenium(wdcp);
driver.navigate().to(serverLink);
I can see, that some javascript commands do work:
sel.getEval("jQuery.fn.jquery"); // 1.4.2
sel.getEval("alert('blah')"); // ok
But I can't make an ajax call.
sel.runScript(String.format("jQuery.get('%s');", command));
It just ends in infinite cycle
Do anybody know why?
Thanks for answering.

link|improve this question

2  
What does command contain? – ShankarSangoli Jan 30 at 17:25
@ShankarSangoli relative path to a xml accessible via http GET. – coubeatczech Jan 30 at 22:03
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.