Example #1
0
    public void LoginAccountGoogleSitePage()
    {
        _driver.Navigate().GoToUrl(_url);
        var wait = new WebDriverWait(_driver, TimeSpan.FromSeconds(5));

        wait.Until(d => GoogleLoginInput.Displayed);
        GoogleInput.SendKeys("*****@*****.**");
        GoogleButton.Click();
        GooglePassInput.SendKeys("password123");
        GooglePassButton.Click();
    }