i need to open some links in firefox or chrome and after download is finished close any of them
i can open link with this command :
System.Diagnostics.Process.Start("firefox.exe", "http://www.example.com?bookid=1");
I have Firefox set to one-window mode it opens a tab. This tab is killed (but not the main window) when I issue the Kill() method
and i can close opened tab with this command :
var proc = Process.Start("firefox.exe", "http://www.example.com");
proc.Kill();
but how can close specified tab with indicate with url ?