Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Last active May 25, 2017 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjoerntx/f14146b2124581896759a03732df06e5 to your computer and use it in GitHub Desktop.
Save bjoerntx/f14146b2124581896759a03732df06e5 to your computer and use it in GitHub Desktop.
private AutomationElement StartApp(string app)
{
p = Process.Start(app);
Thread.Sleep(2000);
return (AutomationElement.FromHandle(p.MainWindowHandle));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment