Firefix 64bitでコントロールできるソース
firefoxについては、互換性あるようで
Win 10 64-bit
Firefox 55.0 (64-bit)
現在は、 Firefox 56.0
Gecko driver geckodriver
https://github.com/mozilla/geckodriver/releases
v0.19.0
http://www.seleniumhq.org/download/
Selenium.WebDriver v3.5.1
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
namespace Test
{
class Program
{
static void Main(string args)
{
FirefoxProfile profile = new FirefoxProfile();
Proxy proxy = new Proxy();
proxy.IsAutoDetect = true;
profile.SetProxyPreferences(proxy);
IWebDriver driver = new FirefoxDriver(profile);
driver.Navigate().GoToUrl(“http://www.google.com/”);
}
}
}
profile
別件で忙しくちょっとメモメモ