public void AutomateIO_CreateAndEnableBots()
        {
            ConfigureLogInPage.LogInToAutomateIo(Constant.uName, Constant.pass);
            bool isLoginSuccess = ConfigureLogInPage.VerifyLogInSuccessfull(Constant.name);

            Assert.IsTrue(isLoginSuccess, Constant.userMissmatch);
        }
        public void AutomateIO_AuthenticateWithGmailAccount()
        {
            ConfigureLogInPage.LogInToAutomateIo(Constant.uName, Constant.pass);
            bool isLoginSuccess = ConfigureLogInPage.VerifyLogInSuccessfull(Constant.name);

            Assert.IsTrue(isLoginSuccess, Constant.userMissmatch);
            ConfigureLogInPage.AddApps(Constant.appName);
        }
 public void AutomateIO_RegisterAsNewUser()
 {
     SeleniumExtension.WaitForElementToBeVisible(Constant.browser, By.TagName(Constant.tag_AioSignUp));
     ConfigureLogInPage.RegisterInAutomateIO(Constant.fullName, Constant.uName, Constant.pass);
 }