Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

constructing an Xpath using regex

  • 09-12-2010 3:53am
    #1
    Registered Users, Registered Users 2 Posts: 599 ✭✭✭


    I am currently testing a website using Selenium / C# / Nunit framework.

    I see from an example on this site:-

    http://www.seleniumwiki.com/software-testing/using-regexpi-in-selenium-istextpresent/

    that it is possible to use a regex to validate text on a page, e.g.

    selenium.IsTextPresent("regexpi:This is SeleniumWiki.com")

    Does anybody know if it is possible to use a regex to construct an actual Xpath, for example, if i want to find and use each link with a href attribute?

    <a href="/latest_showcases.aspx" id="LatestShowcases1_lnkViewAll">View All</a>

    so instead of - //a[@id='LatestShowcases1_lnkViewAll']@href - as the Xpath, i could get something like - //a[@id=regexi:??]@href

    thanks.


Advertisement