Skip to content

roydekleijn/Spring-Jbehave-WebDriver-Example

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Prerequisites

How to run it

Run the project with the following run configurations: mvn clean integration-test -Dgroup=google

How to run it with Grid

  1. start your hub

    java -jar selenium-server-standalone-2.40.0.jar -role hub

  2. start your nodes (you need at least as many nodes as the threads specified in in the pom.xml)

    java -jar selenium-server-standalone-2.40.0.jar -role node -port 5588 -hub http://localhost:4444/grid/register -browser browserName=firefox,maxInstances=1,platform=LINUX

    java -jar selenium-server-standalone-2.40.0.jar -role node -port 5599 -hub http://localhost:4444/grid/register -browser browserName=firefox,maxInstances=1,platform=LINUX

    java -jar selenium-server-standalone-2.40.0.jar -role node -port 5500 -hub http://localhost:4444/grid/register -browser browserName=chrome,version=33,chrome_binary=/path/to/chrome/driver/binary,maxInstances=1,platform=LINUX

  3. start the tests with Firefox

    mvn clean integration-test -Dgroup=google -DseleniumGrid=true

  4. start the tests with a custom browser (Ensure drivers are up to date, See driver download locations below)

    mvn clean integration-test -Dgroup=google -Dbrowser=chrome -DseleniumGrid=true

Releases

No releases published

Packages

No packages published

Languages