PhantomJS驅動程序是否支持命令行參數?我需要使用PhantomJS驅動程序運行Selenium測試並禁用網絡安全。我曾嘗試過:指定PhantomJS命令行選項Selenium PhantomJSDriver
PhantomJSOptions options = new PhantomJSOptions();
options.AddAdditionalCapability("web-security",false);
driver = new PhantomJSDriver(Environment.CurrentDirectory + @"\drivers", options);
但這似乎不起作用。 PhantomJSDriver是否允許傳遞命令行參數?
你知道在[郵件列表](https://groups.google.com/forum/#!topic/selenium-users/QBUGtKBHMOA)和StackOverflow上詢問問題的東西,而你回答郵件列表中的人,並且其他人在StackOverflow上可疑地回答你的問題?是的,那。 – JimEvans
@JimEvans:哎呀,對不起吉姆,顯然我不是一個定期檢查郵件列表的人,這意味着我不知道你的答案是什麼樣子,但現在知道我的答案與JimEvans的「永遠正確」的答案。也許我應該從現在開始在郵件列表中跟蹤你。無論如何,謝謝你,吉姆。 –
PhantomJSDriver服務不支持AddArgument()或AddArguments()...不根據文檔http://selenium.googlecode.com/git/docs/api/dotnet/index.html – user2474653