Skip to content

Commit

Permalink
Merge pull request #628 from santhoshb-msft/main
Browse files Browse the repository at this point in the history
fixed ui tests from bootstrap changes - merging as changes are related to ui tests
  • Loading branch information
santhoshb-msft authored Jan 4, 2024
2 parents 7e6dc42 + f966d41 commit 1d3d1ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/UI.Test/AdminApplicationShould.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public void Setup()
options.AddArguments("--window-size=1920,1080");
options.AddArguments("--start-maximized");
driver = new ChromeDriver(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), options);
driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(10);
driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(60);
}

[TestCleanup()]
Expand Down Expand Up @@ -124,7 +124,7 @@ public void AdminAppSubscriptionsPageFetchAll()
gotoSubscriptionsPageFromTile();

//Act
driver.FindElement(By.XPath("//span[@class='cm-section-heading']/following-sibling::a")).Click();
driver.FindElement(By.XPath("//a[@class='btn btn-secondary cm-button']")).Click();

//Click OK for Javascript confirm on Fetch Click
IAlert alert = driver.SwitchTo().Alert();
Expand Down

0 comments on commit 1d3d1ef

Please sign in to comment.