Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In below code when I use //a[text()='My Process1' in Firebug it evaluates xpath and returns correctly, however when I try to use the same for finding an element using WebDriver I get NoSuchElement exception....any ideas what I might be doing wrong?

    <div class="abbd" style="">
    <ul class="New-type">
    <li class="abcmenuitem" id="yui-gen10" groupindex="0" index="3"><a href="#" class="abcmenuitemlabel">My Process1</a></li>
    <li class="abcmenuitem" id="yui-gen11" groupindex="0" index="4"><a href="#" class="abcmenuitemlabel">My Process2</a></li>
    </ul>

</div>
share|improve this question

1 Answer

webDriver.findElment(By.linkText("My Process1"));
share|improve this answer
Thanks Phil for quick response, have tried it...it is not working :( I get Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to find element with link text == General Inquiry (WARNING: The server did not provide any stacktrace information); duration or timeout: 374 milliseconds For documentation on this error, please visit: seleniumhq.org/exceptions/no_such_element.html – Srinivas Nov 15 '11 at 7:16
I'm using webdriver, this one works well. Are you sure your webpage contains the link. You can print out the web page with webDriver.getPageSource(). – ComfortablyNumb Nov 15 '11 at 7:57
Phil - I cannot find anything with text ..."My Process1" on source – Srinivas Nov 15 '11 at 8:59
Then that's not a problem with webDriver, you should go back and check your application functionality. Are you using FirefoxDriver with WebDriver? With FirefoxDirver, you can watch what's going on on the pop-up firefox browser – ComfortablyNumb Nov 15 '11 at 9:51
You can use absolute xpath – Ripon Al Wasim Mar 8 at 10:26

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.