Aquality.Selenium.Browsers.BrowserNavigation.GoToUrl C# (CSharp) Method

GoToUrl() public method

Navigates to desired url.
public GoToUrl ( Uri url ) : void
url Uri Uri representation of URL.
return void
        public void GoToUrl(Uri url)
        {
            InfoLocNavigate(url.ToString());
            driver.Navigate().GoToUrl(url);
        }

Same methods

BrowserNavigation::GoToUrl ( string url ) : void