I have some C# code for extracting url from Chrome. It usually works on Win7/Win 8.1, but on some computers with the same configuration it doesn't work. And, probably, there is no difference between these configurations. Why does it happen?
Process[] procsChrome = Process.GetProcessesByName("chrome");
foreach(Process chrome in procsChrome)
{
if(chrome.MainWindowHandle == IntPtr.Zero)
{
continue;
}
AutomationElement mainWindow = AutomationElement.FromHandle(chrome.MainWindowHandle);
elmUrlBar = mainWindow.FindFirst(TreeScope.Descendants, new PropertyCondition(AutomationElement.ControlTypeProperty, ControlType.Edit));
//elmUrlBar on some computers inited, on some NULL. But versions of Chrome are identical.
...
}
I had a similar issue in a server where the
UI Automation
worked just fine one day and it didn't the other day.Someone with admin privileges had added some System Environment variables and restarted the server. Not sure how they messed up something in this step, but my app stopped working after that.
After pulling hair for a day out of frustration, I decided to log off from the user account I was logged into that server and logged back in again. And I ran my app, and bam, it started working!