Skip to content

Instantly share code, notes, and snippets.

@ultimate-qa2
Created August 16, 2018 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ultimate-qa2/7bdad8a308602c3bf23560e51e0baab7 to your computer and use it in GitHub Desktop.
Save ultimate-qa2/7bdad8a308602c3bf23560e51e0baab7 to your computer and use it in GitHub Desktop.
[Test]
public void SetBaselineUsingDifferentAppName()
{
GoToPricingPage();
Eyes.Open(Driver, "app 2", TestCaseName, Resolution1080P);
Eyes.CheckWindow();
}
[Test]
public void SetBaselineUsingTestName()
{
GoToPricingPage();
//all the parameters are the same, except we provided a new test name
Eyes.Open(Driver, AppName, "new test name", Resolution1080P);
Eyes.CheckWindow();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment