Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,13 @@ public static void Login(IWebDriver driver, Uri orgUrl, string username, string
usernameInput.SendKeys(Keys.Enter);

IWebElement passwordInput = driver.WaitUntilClickable(By.XPath(Elements.Xpath[Reference.Login.LoginPassword]), 30.Seconds());
passwordInput.SendKeys(password);
passwordInput.Submit();

// check to see if password is needed as it isn't needed in SSO scenario
if (passwordInput != null)
{
passwordInput.SendKeys(password);
passwordInput.Submit();
}

var staySignedIn = driver.WaitUntilClickable(By.XPath(Elements.Xpath[Reference.Login.StaySignedIn]), 10.Seconds());
if (staySignedIn != null)
Expand Down