Dev
Dev

Reputation: 355

Codeception webdriver in windows

I am new to codeception.I try to follow tutorial from http://codeception.com/11-20-2013/webdriver-tests-with-codeception.html. I install codeception using my composer.

"require-dev": {
    "codeception/codeception": "*"
}

and I have codeception.Now I need Selenium server I try

java -jar selenium-server-standalone-2.50.1.jar

which give me error unable to access jarFile. So I used npm to install Selenium server and I have selenium-server-standalone-jar/jar/selenium-server-standalone-jar-2.50.1.jar inside. And change my path to myproject/node_modules/selenium-server-standalone-jar/jar and try run

java -jar selenium-server-standalone-2.50.1.jar

I see something in my screen enter image description here

Can anyone suggest me what I did wrong. My operating system in Windows 7.

Thank you.

Upvotes: 2

Views: 218

Answers (1)

Dev
Dev

Reputation: 355

java -jar selenium-server-standalone-2.50.1.jar -role hub help me

Thank you.

Upvotes: 1

Related Questions