我正在尝试为此指定 IE 驱动程序日志路径,我使用了 Command-Line.Code,如下所示
var optionsIe32 = new InternetExplorerOptions
{
IntroduceInstabilityByIgnoringProtectedModeSettings = true,
EnsureCleanSession = true,
BrowserCommandLineArguments = "--log-file=\"C:\\IE.log\"
};
var _webDriver = new InternetExplorerDriver(pathContainingIE32DriverServer, optionsIe32);
但是当发生错误时,日志文件没有得到更新。
我在这里做错了什么?提前致谢