我想問問你:有沒有什麼辦法可以運行在我的一個應用程序方法啓動過程中打開的進程?
我正在寫在WPF應用程序,這是我想在後臺運行我的Firefox的驅動程序(硒):程序在後臺打開應用程序
//create driver using existing profile
IWebDriver driver = new FirefoxDriver(ffprof);
//change a position (browser is invisible on the screen but after 1-2 sec since ff opened so
//this is not a solution :(. And it exist on taskbar.
driver.Manage().Window.Position = new System.Drawing.Point(-2000,0);
//change webdriver url
driver.Url = url;
//Save this ff proces to variable
Process ffProcess = HelpMethods.GetFirefoxProcess();
當Firefox將運行作爲後臺進程的另一個問題,我可以工作與它通常(例如更改網址或在網站上做某事)?
你說的「在後臺運行的意思「?隱藏的瀏覽器窗口? – Andrew
過程啓動時是隱藏窗口 – kamciono5