Skip to content

Commit 4475d43

Browse files
author
Quang
committed
added timeout when waiting for process idle state
1 parent b91e43d commit 4475d43

File tree

1 file changed

+1
-1
lines changed
  • src/TestStack.White/UIItems/WindowItems

1 file changed

+1
-1
lines changed

src/TestStack.White/UIItems/WindowItems/Window.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ private bool IsConsole()
246246
/// <exception cref="System.ArgumentException">when current process is not available any more (id expired)</exception>
247247
protected virtual void WaitForProcess()
248248
{
249-
Process.GetProcessById(automationElement.Current.ProcessId).WaitForInputIdle();
249+
Process.GetProcessById(automationElement.Current.ProcessId).WaitForInputIdle(CoreAppXmlConfiguration.Instance.BusyTimeout);
250250
}
251251

252252
public override void ActionPerformed(Action action)

0 commit comments

Comments
 (0)