vote up 1 vote down star
1

browser.getEval function in selenium makes iterateNext return null ..Otherwise in firebug it returns a value(same script)

document.evaluate("//button[text()='Save']",
                  document, 
                  null,
                  XPathResult.ANY_TYPE,
                  null)
        .iterateNext()
        .disabled;

returns true

But

browser.getEval("document.evaluate(\"//button[text()='Save']\", 
                                     document,
                                     null,
                                     XPathResult.ANY_TYPE,
                                     null)
                         .iterateNext()
                         .disabled;");

returns that error as :

"com.thoughtworks.selenium.SeleniumException: ERROR: Threw an exception: res.iterateNext() is null "

flag

2 Answers

vote up 0 vote down
window.document.evaluate()
link|flag
vote up 1 vote down

Try replacing document.evaluate with this.browserbot.getUserWindow().document.evaluate

link|flag
That doesnt work! – anil Oct 23 at 6:26
this.browserbot is undefined – anil Oct 23 at 6:27
Are you using Selenium IDE or RC? If RC, what client language are you using? Perhaps you could provide a little more sample code. – Dave Hunt Oct 23 at 8:16
i'm using testng – anil Oct 23 at 12:16
Selenium Remote Control (RC) java code – anil Oct 23 at 12:39

Your Answer

Get an OpenID
or

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