使用硒硒的webdriver容易,雖然我需要用正確的設置啓動驅動程序設置選項和功能
所以現在我只需要它會忽略縮放級別
我的代碼是:
public string path = AppDomain.CurrentDomain.BaseDirectory;
public IWebDriver WebDriver;
var ieD = Path.Combine(path, "bin");
DesiredCapabilities caps = DesiredCapabilities.InternetExplorer();
caps.SetCapability("ignoreZoomSetting", true);
現在我當前的代碼只有在通過驅動程序的路徑作爲參數
WebDriver = new InternetExplorerDriver(ieD);
我該如何正確傳遞能力和驅動程序路徑?
請註明或對答案評論說 – nullpointer