We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0186740 commit 7f74b47Copy full SHA for 7f74b47
src/TestStack.White.UITests/Scenarios/Win32Tests.cs
@@ -38,7 +38,10 @@ public void InternetExplorerTests()
38
using (var app = Application.Launch(IExplorer))
39
using (var window = app.GetWindow("New tab - Internet Explorer"))
40
{
41
- window.Get<Button>(SearchCriteria.ByAutomationId("Item 3")).Click();
+ var button = window.Get<Button>(SearchCriteria.ByAutomationId("Item 3"));
42
+ //check if we can get a win32 tooltip
43
+ Assert.Equal("Tools (Alt+X)", window.GetToolTipOn(button).Text);
44
+ button.Click();
45
window.PopupMenu("Internet options").Click();
46
using (var internetOptions = window.ModalWindow("Internet Options"))
47
0 commit comments