Learn R Programming

RSelenium (version 1.7.9)

makeFirefoxProfile: Make Firefox profile.

Description

makeFirefoxProfile A utility function to make a firefox profile.

Usage

makeFirefoxProfile(opts)

Arguments

opts

option list of firefox

Detail

A firefox profile directory is zipped and base64 encoded. It can then be passed to the selenium server as a required capability with key firefox_profile

Examples

Run this code
if (FALSE) {
fprof <- makeFirefoxProfile(list(browser.download.dir = "D:/temp"))
remDr <- remoteDriver(extraCapabilities = fprof)
remDr$open()
}

Run the code above in your browser using DataLab