Rselenium和Geckodriver-firefox中的“警告:潜在的潜在安全风险”错误

时间:2019-06-25 05:39:02

标签: r security firefox geckodriver rselenium

我正在尝试使用RSelenium访问页面。我用R语言编写了代码,并且在Chrome和IE中都可以正常工作。但是,当我使用geckodriver时,firefox显示以下消息,并且我在R控制台中看到一个错误:

enter image description here

Selenium message:
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:53'
System info:os.name: 'Windows 7', os.arch: 'x86', os.version: '6.1', java.version: '1.8.0_40'
Driver info: driver.version: unknown

Error:   Summary: UnknownError
     Detail: An unknown server-side error occurred while processing the command.
     class: org.openqa.selenium.WebDriverException
     Further Details: run errorDetails method

我发现我应该更改firefox配置文件,但这是python代码,我需要R:

FirefoxProfile profile = new FirefoxProfile();
profile.setAcceptUntrustedCertificates(true);

R应该是这样的

fprof <- makeFirefoxProfile(list(browser.download.dir = "D:/temp"))
remDr <- remoteDriver(extraCapabilities = fprof)

但是我不知道该怎么写。

请你帮我一下。 或者,如果您知道我如何停用此警告!

1 个答案:

答案 0 :(得分:-2)

硒要求您将{em acceptInsecureCerts acceptUntrustedCerts都设置为TRUE。此外,remoteDriver已过时,因此,您现在必须使用rsDriver,如此处所示:

remDr=rsDriver(browser=browserName,extraCapabilities=list(acceptInsecureCerts=TRUE,acceptUntrustedCerts=TRUE))