Hi Gabor
Yes, we've been able to shutdown chrome in a graceful manner.
According to
this Stackoverflow post, we've adapted our terminate stage in each of our VBO's using chrome.
Previously we used 'terminate' or Utility - Kill Process, but this one seems to fix it.
Concretely, we add the following C# codeblock to terminate chrome:
Process[] processes;
string procName = "chrome";
processes = Process.GetProcessesByName(procName);
foreach (Process proc in processes){
proc.CloseMainWindow();
}
Make sure to also import System.Diagnotics namespace in the Business Object Code Options.
In the end, it was a combination of several issues that seemed to trigger at different times;
- 'Incorrect' Chrome termination
- Using Studio & Control room interchangeably
- UIA spying needed --forcerenderer-accessibility startup parameter
Hopefully this helps!
------------------------------
Jonas
------------------------------