Maybe this is a simple question, but I can not find information about this.
I used selenium 2.x this way. I start the server:
java -jar selenium-server-standalone-2.53.1.jar -Dwebdriver.chrome.driver=chromedriver -browserSideLog -debug -timeout 60
And then I run my tests. I use Dart, so I do
pub run test test/selenium/custom_component_test.dart
But now I'm trying to use selenium 3. I downloaded it and replaced my old terminal with a new jar, but it looks like I can do it. Selenium tells me that he does not know such a parameter "-Dwebdriver.chrome.driver". And in the help I do not see the parameters to indicate the parameter.
So how to run selenium 3 with chrome driver?
source share