ContributionsMost RecentMost LikesSolutionsFinding Text Elements in a Webpage I have the following html on a webpage. I want to extract "Row: 0" and "Row: 1" etc and place them in an array. Can you suggest what I can do to accomplish this. <span class="statusTextContainer-181">Rows: 0</span> <span class="statusTextContainer-181">Rows: 1</span> SolvedRe: Function to click on link using xpath Thank you very much. It works. Re: Function to click on link using xpath Thanks for you response. Yes... I did record it, but even this code does not work when run (see below). Also I am trying to build a framework using xpath, rather than record and playback. function Test1() { Browsers.Item(btEdge).Navigate("https://blah-qa.powerappsportals.com/"); let browser = Aliases.browser; browser.BrowserWindow.Maximize(); browser.pageFilmPermitHomePageCustomPort.linkApplyForAPermit.Click(); } Function to click on link using xpath I am trying to write a simple function to click on a link using the xpath to the link. I am getting a runtime error on the browser.Page.FindElement - can you please point me in the right direction. Many thanks. function selectApplyPermitLink() { let browser = Aliases.browser; page = browser.Page("*"); //I would like to have the code use the xpath shown below to click on the link.. browser.Page.FindElement("//a[.='Apply for a permit']").Click(); } Solved