Skip to content

Commit

Permalink
fix test sample app url
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Feb 16, 2024
1 parent 28fddce commit cfc2451
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Example.Steps
public class CalculatorElementLocators
{
//The URL of the calculator to be opened in the browser
public static string CalculatorUrl = "https://reqnrolloss.github.io/Calculator-Demo/Calculator.html";
public static string CalculatorUrl = "https://specflowoss.github.io/Calculator-Demo/Calculator.html";
public static IWebLocator FirstNumberFieldLocator => L("First number", By.Id("first-number"));
public static IWebLocator SecondNumberFieldLocator => L("second-number", By.Id("second-number"));
public static IWebLocator AddButtonLocator => L("add-button", By.Id("add-button"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Reqnroll.Actions.Browserstack.IntegrationTests.PageObjects
public class CalculatorElementLocators
{
//The URL of the calculator to be opened in the browser
private protected const string CalculatorUrl = "https://reqnrolloss.github.io/Calculator-Demo/Calculator.html";
private protected const string CalculatorUrl = "https://specflowoss.github.io/Calculator-Demo/Calculator.html";

//Finding elements by ID
private protected By FirstNumberFieldLocator => By.Id("first-number");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Reqnroll.Actions.LambdaTest.IntegrationTests.PageObjects
public class CalculatorElementLocators
{
//The URL of the calculator to be opened in the browser
private protected const string CalculatorUrl = "https://reqnrolloss.github.io/Calculator-Demo/Calculator.html";
private protected const string CalculatorUrl = "https://specflowoss.github.io/Calculator-Demo/Calculator.html";

//Finding elements by ID
private protected By FirstNumberFieldLocator => By.Id("first-number");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Example.PageObjects
public class CalculatorPageObject : BasePage
{
// The page URL
private protected const string CalculatorUrl = "https://reqnrolloss.github.io/Calculator-Demo/Calculator.html";
private protected const string CalculatorUrl = "https://specflowoss.github.io/Calculator-Demo/Calculator.html";

//Finding elements by ID
private static string FirstNumberFieldSelector => "#first-number";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Example.PageObjects
public class CalculatorElementLocators
{
//The URL of the calculator to be opened in the browser
private protected const string CalculatorUrl = "https://reqnrolloss.github.io/Calculator-Demo/Calculator.html";
private protected const string CalculatorUrl = "https://specflowoss.github.io/Calculator-Demo/Calculator.html";

//Finding elements by ID
private protected By FirstNumberFieldLocator => By.Id("first-number");
Expand Down

0 comments on commit cfc2451

Please sign in to comment.