operachromiumdriver
                                
                                 operachromiumdriver copied to clipboard
                                
                                    operachromiumdriver copied to clipboard
                            
                            
                            
                        how to i use with selenium standalone jar file?
Hi i have gone through your documentation but i have not figure it out how can i use it with selenium standalone server.
i am trying to use..
java -jar [PATH]/selenium-server-standalone-2.53.0.jar -Dwebdriver.chrome.driver=[PATH]/operadriver -role node -nodeConfig [PATH]/MAC_opera.json
capability definition on MAC_opera.json
{
      "platform": "MAC",
      "browserName": "opera",
      "maxInstances": 5,
      "seleniumProtocol": "WebDriver",
      "chromeOptions":{
        "args":[],
        "extensions":[],
        "binary": "/Applications/Opera.app/Contents/MacOS/Opera"
      },
      "operaOptions":{
        "binary": "/Applications/Opera.app/Contents/MacOS/Opera",
        "BinaryLocation":"/Applications/Opera.app/Contents/MacOS/Opera"
      },
      "binary":"/Applications/Opera.app/Contents/MacOS/Opera"
    }
Can you please provide more info on that? i have not tried on windows till now.
regards Mithun Mandal
Similiar problem :disappointed:
I am tring configure docker, and did'nt find any information how to do it.
@mandalm I use this:
.withCapabilities({browserName: 'operablink', operaOptions: {binary: '/usr/bin/opera'}})
There is 2 modes for selenium: presto and blink. For presto you must add some java classes, but blink is more actual and it can be used with those options.
It seems to me that /usr/bin/opera should be the default binary path for operadriver on Linux.