0

I am trying to run RSelenium with internet explorer I have downloaded the jar file selenium-server-standalone-3.0.1 which according to the documentation has internet explorer already available to it

My Code is below and it connects to the server without issue My only concern is it seems to connect as firefox which wont work for us as internally our systems seem to only function with IE

remDr <- remoteDriver(remoteServerAddr = "localhost", port = 4444, browserName = "internet explorer")
remDr <- remoteDriver(port = 4444)
remDr$open()

Do i need to install something else?

I have created a batchfile to run like below before the script starts

chdir /d C:\Selenium\
java -jar selenium-server-standalone-3.0.1.jar
John Smith
  • 2,448
  • 7
  • 54
  • 78
  • 1
    You will need to download the IEDriverServer see https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver . Take special note of the Required Configuration section. – jdharrison Dec 08 '16 at 11:31
  • 1
    I have a project in beta which may help if you want to email me at address given in https://github.com/ropensci/RSelenium/blob/master/DESCRIPTION – jdharrison Dec 08 '16 at 11:52

0 Answers0