Skip to content

Commit 1d3d1ef

Browse files
Merge pull request #628 from santhoshb-msft/main
fixed ui tests from bootstrap changes - merging as changes are related to ui tests
2 parents 7e6dc42 + f966d41 commit 1d3d1ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/UI.Test/AdminApplicationShould.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void Setup()
6363
options.AddArguments("--window-size=1920,1080");
6464
options.AddArguments("--start-maximized");
6565
driver = new ChromeDriver(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), options);
66-
driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(10);
66+
driver.Manage().Timeouts().ImplicitWait = TimeSpan.FromSeconds(60);
6767
}
6868

6969
[TestCleanup()]
@@ -124,7 +124,7 @@ public void AdminAppSubscriptionsPageFetchAll()
124124
gotoSubscriptionsPageFromTile();
125125

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

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

0 commit comments

Comments
 (0)