Beispiel #1
0
        public void GivenIEnterTheAndOnTheReinstallScriptsPage_()
        {
            var installSQLScriptsPage = new InstallSQLScriptsPage();

            installSQLScriptsPage.UsernameInput.SendKeys(Config.SAUserName);
            installSQLScriptsPage.UsernamePassword.SendKeys(Config.SAPassword);
        }
Beispiel #2
0
        public void WhenIRunTheSQLScriptInstall_()
        {
            var installSQLScriptsPage = new InstallSQLScriptsPage();

            installSQLScriptsPage.RunButton.Click();
        }
Beispiel #3
0
        public void ThenIReceiveSQLScriptInstallSuccessMessage_()
        {
            var installSQLScriptsPage = new InstallSQLScriptsPage();

            PageConstants.WaitUntil(() => installSQLScriptsPage.SuccessMessageWindow.Displayed, 60);
        }