I want to get list of Chrome browsers running currently, for example how many windows(instance) of Chrome browser are opened and in each window list of URLs, so that I can store each URL under its specific windows(instance).
Process[] localByName = Process.GetProcessesByName(Generic.fileType.chrome.ToString());
foreach (Process p in localByName)
{
}
using this code I can't differ windows and processes.