Automobile.Mobile.Android.Automation.AndroidBrowser.Navigate C# (CSharp) Method

Navigate() public method

Navigate to a url optionally using the base url
public Navigate ( string url, bool useBaseUrl ) : void
url string url to navigate to
useBaseUrl bool toggle baseurl
return void
        public override void Navigate(string url, bool useBaseUrl)
        {
            if(useBaseUrl && !url.Contains("://"))
            {
                Url = BaseUrl + url;
            }
            else
            {
                Url = url;
            }
            WaitForReady();
        }