How to get the URL of the current window using Selenium WebDriver in C#?
Yes, you can get the URL of the current page. Instantiate your driver and then get the driver's Url property.
Code snippet:
IWebDriver driver = new FirefoxDriver();
String currentURL = driver.Url;
Help from: Selenium: Find the base Url