打开多个tor proggremly的一个实例

时间:2018-02-28 18:35:53

标签: configuration firefox

我正在尝试使用c#打开多个具有不同身份的tor浏览器实例。

其中一个brwoswers打开正常:

enter image description here

但是当代码打开第二个时我得到空的浏览器:

enter image description here

这是我的c#代码:

 IWebDriver browser;

            FirefoxProfile profile = new FirefoxProfile();
            profile.SetPreference("network.proxy.type", 1);
            profile.SetPreference("network.proxy.socks", "127.0.0.1");
            profile.SetPreference("network.proxy.socks_port", 9150);
            browser =  new FirefoxDriver(profile);
            //    browser.Quit();

            //Firefox's proxy driver executable is in a folder already
            //  on the host system's PATH environment variable.
            browser.Navigate().GoToUrl("http://dnsleaktest.com");
            //IWebElement header = browser.FindElement(By.Id(“site - header"));

            //Assert.True(header.Displayed);
            // browser.Close();

            Thread.Sleep(10000);
            IWebDriver browser2;

            FirefoxProfile profile2 = new FirefoxProfile();
            profile2.SetPreference("network.proxy.type", 1);
            profile2.SetPreference("network.proxy.socks", "127.0.0.1");
            profile2.SetPreference("network.proxy.socks_port", 9152);
            browser2 = new FirefoxDriver(profile2);
            //    browser.Quit();

            //Firefox's proxy driver executable is in a folder already
            //  on the host system's PATH environment variable.
            browser.Navigate().GoToUrl("http://dnsleaktest.com");
            //IWebElement header = browser.FindElement(By.Id(“site - header"));

            //Assert.True(header.Displayed);
            // browser.Close();

如果需要,请更正我的英语

0 个答案:

没有答案