Selenium webdriver 如何记录Selenium创建WebDriver函数

Selenium webdriver 如何记录Selenium创建WebDriver函数,selenium-webdriver,firefox,robotframework,Selenium Webdriver,Firefox,Robotframework,我正在尝试在Robot框架中使用Selenium运行Firefox。 我正在使用Firefox配置文件和Firefox选项,通过ntlm身份验证代理测试Firefox 当我使用robot框架启动Firefox时,使用以下代码 Create Webdriver Firefox firefox_profile=${options} firefox_options=${firefox_options} capabilities=${ff_default_caps} 提示在日志

我正在尝试在Robot框架中使用Selenium运行Firefox。 我正在使用Firefox配置文件和Firefox选项,通过ntlm身份验证代理测试Firefox

当我使用robot框架启动Firefox时,使用以下代码

Create Webdriver    Firefox    firefox_profile=${options}    firefox_options=${firefox_options}    capabilities=${ff_default_caps}
提示在日志下方呈现并输出

UnexpectedAlertPresentException: Alert Text: None
Message: Dismissed user prompt dialog: The proxy moz-proxy://127.0.0.1:3128 is requesting a username and password. The site says: “moz-proxy://127.0.0.1:3128”
我在创建WebDriver之前尝试添加了以下内容,但运气不佳:

Set To Dictionary    ${ff_default_caps}    unhandledPropmtBehaviorSetting=accept
在创建WebDriver之前没有运气

我正在尝试查看Selenium驱动程序正在记录什么。 有人能帮我配置日志吗