Skip to content

Commit 6273fec

Browse files
committed
Added usage guide for release for selenium 3.141.x.
1 parent 0243d9f commit 6273fec

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,31 @@ ScalaTest + Selenium provides integration support between ScalaTest and Selenium
33

44
**Usage**
55

6-
To use it for ScalaTest 3.1.0 and Selenium 2.45.x:
6+
To use it for ScalaTest 3.1.1 and Selenium 3.141.x:
77

88
SBT:
99

1010
```
11-
libraryDependencies += "org.scalatestplus" %% "selenium-2-45" % "3.1.0.0" % "test"
11+
libraryDependencies += "org.scalatestplus" %% "selenium-3-141" % "3.1.1.0" % "test"
12+
```
13+
14+
Maven:
15+
16+
```
17+
<dependency>
18+
<groupId>org.scalatestplus</groupId>
19+
<artifactId>selenium-3-141</artifactId>
20+
<version>3.1.1.0</version>
21+
<scope>test</scope>
22+
</dependency>
23+
```
24+
25+
To use it for ScalaTest 3.1.1 and Selenium 2.45.x:
26+
27+
SBT:
28+
29+
```
30+
libraryDependencies += "org.scalatestplus" %% "selenium-2-45" % "3.1.1.0" % "test"
1231
```
1332

1433
Maven:
@@ -17,7 +36,7 @@ Maven:
1736
<dependency>
1837
<groupId>org.scalatestplus</groupId>
1938
<artifactId>selenium-2-45</artifactId>
20-
<version>3.1.0.0</version>
39+
<version>3.1.1.0</version>
2140
<scope>test</scope>
2241
</dependency>
2342
```

0 commit comments

Comments
 (0)