You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/tour_examples/ReadMe.md
+12-4Lines changed: 12 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Website Tours
4
4
5
-
SeleniumBase Tours utilize 4 JavaScript libraries for creating interactive walkthroughs on any website:<br>**[Shepherd](https://shepherdjs.dev/)**, **[Bootstrap Tour](http://bootstraptour.com/)**, **[IntroJS](https://introjs.com/)**, and **[Hopscotch](https://linkedinattic.github.io/hopscotch/)**.
5
+
SeleniumBase Tours utilize 5 JavaScript libraries for creating interactive walkthroughs on any website:<br>**[Shepherd](https://shepherdjs.dev/)**, **[Bootstrap Tour](http://bootstraptour.com/)**, **[IntroJS](https://introjs.com/)**, **[DriverJS](https://kamranahmed.info/driver.js/)**, and **[Hopscotch](https://linkedinattic.github.io/hopscotch/)**.
6
6
7
7
**Example tour:**
8
8
@@ -15,7 +15,7 @@ pytest google_tour.py
15
15
16
16
### Creating a new tour:
17
17
18
-
#### To create a tour utilizing the Shepherd JS Library, use one of the following:
18
+
#### To create a tour utilizing the Shepherd Library, use one of the following:
19
19
20
20
``self.create_shepherd_tour()``
21
21
@@ -33,15 +33,23 @@ OR
33
33
34
34
``self.create_tour(theme="bootstrap")``
35
35
36
-
#### To create a tour utilizing the Intro JS Library, use one of the following:
36
+
#### To create a tour utilizing the IntroJS Library, use one of the following:
37
37
38
38
``self.create_introjs_tour()``
39
39
40
40
OR
41
41
42
42
``self.create_tour(theme="introjs")``
43
43
44
-
#### To create a tour utilizing the Hopscotch JS Library, use one of the following:
44
+
#### To create a tour utilizing the DriverJS Library, use one of the following:
45
+
46
+
``self.create_driverjs_tour()``
47
+
48
+
OR
49
+
50
+
``self.create_tour(theme="driverjs")``
51
+
52
+
#### To create a tour utilizing the Hopscotch Library, use one of the following:
0 commit comments