Skip to content

Commit d405413

Browse files
committed
Update the docs
1 parent d07e772 commit d405413

File tree

2 files changed

+13
-5
lines changed

2 files changed

+13
-5
lines changed

docs/prepare.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def main(*args, **kwargs):
106106
changed = True
107107
line = (
108108
'<section align="center"><div align="center">'
109-
'<h2>Reliable Browser Testing</h2>'
109+
'<h2>Reliable Browser Testing</h2>'
110110
'</div></section>')
111111
if "<!-- SeleniumBase Header2 -->" in line:
112112
changed = True

examples/tour_examples/ReadMe.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Website Tours
44

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/)**.
66

77
**Example tour:**
88

@@ -15,7 +15,7 @@ pytest google_tour.py
1515

1616
### Creating a new tour:
1717

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:
1919

2020
``self.create_shepherd_tour()``
2121

@@ -33,15 +33,23 @@ OR
3333

3434
``self.create_tour(theme="bootstrap")``
3535

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:
3737

3838
``self.create_introjs_tour()``
3939

4040
OR
4141

4242
``self.create_tour(theme="introjs")``
4343

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:
4553

4654
``self.create_hopscotch_tour()``
4755

0 commit comments

Comments
 (0)