How to read url from opened webpage.

I have opened a web application and navigated to specific page and the data i required is in the url and i want to extract it.

ex - https://www.abc.com/…@-15.0012301,-51.19662313,…, I want to extract those numbers.

@ShreeHarshaN16839089 As long as you are matched to the page, you can use the “Url” property of the webpage to get the full Url. You can then parse this as required.

@ThomasSasnett Thanks for the help.