Skip to content

Commit 7f74b47

Browse files
author
Jake Ginnivan
committed
Verify #94 is no longer an issue
1 parent 0186740 commit 7f74b47

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/TestStack.White.UITests/Scenarios/Win32Tests.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ public void InternetExplorerTests()
3838
using (var app = Application.Launch(IExplorer))
3939
using (var window = app.GetWindow("New tab - Internet Explorer"))
4040
{
41-
window.Get<Button>(SearchCriteria.ByAutomationId("Item 3")).Click();
41+
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();
4245
window.PopupMenu("Internet options").Click();
4346
using (var internetOptions = window.ModalWindow("Internet Options"))
4447
{

0 commit comments

Comments
 (0)