Skip to content
This repository has been archived by the owner on Apr 30, 2022. It is now read-only.

Fix Saucelabs test with authorization response #814

Merged
merged 1 commit into from
Oct 8, 2021
Merged
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
2 changes: 1 addition & 1 deletion Framework/SeleniumUnitTests/SeleniumConfigTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public void RemoteCapabilitySectionRespected()
}
catch (Exception e)
{
Assert.IsTrue(e.InnerException.Message.Contains("Sauce_Labs_Username"), "Did not see 'Sauce_Labs_Username' in error message: " + e.Message + " -- " + e.InnerException.Message);
Assert.IsTrue(e.InnerException.Message.Contains("Sauce_Labs_Username") || e.InnerException.Message.Contains("Unauthorized"), "Did not see 'Sauce_Labs_Username' in error message: " + e.Message + " -- " + e.InnerException.Message);
checkedAssertion = true;
}
finally
Expand Down