我在我的web應用程序上使用selenium webdriver來測試加載網站的速度。我的應用場景是: 點擊鏈接 - >啓動google web瀏覽器 - >在其上執行腳本。 所有這一切工作正常。現在的問題是,當我在遠程計算機上移動此項目時,爲了讓用戶能夠通過公共網址測試應用程序,chrome瀏覽器不會在其側面啓動,而只會在遠程計算機上啓動。Webdriver不支持以其他用戶身份運行
這是我試過
public static String driverpath = "C:\\Drivers";
System.setProperty("webdriver.chrome.driver", driverpath
+ "\\chromedriver.exe");
Webriver driver = new ChromeDriver();
driver.get("https://www.google.com");
你能解釋一下什麼情況你想看到什麼時候你的行爲發生? – SkorpEN
41.224.45.48:8383/web2/template/template.xhtml這是我的web應用程序。在點擊網站1時,您應該看到Chrome瀏覽器,但它在我的遠程計算機上啓動。清楚嗎 ? – omar