Skip to content

Commit 1441669

Browse files
committed
Update tour examples
1 parent aa3fe3e commit 1441669

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

examples/tour_examples/bootstrap_google_tour.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def test_google_tour(self):
2424
self.wait_for_element("#search")
2525

2626
self.create_bootstrap_tour()
27-
self.add_tour_step(
28-
"See results here!", title="(autoplay in 5s)")
27+
self.add_tour_step("See Results Here!", title="(5-second autoplay)")
2928
self.add_tour_step("Here's the next tour:")
3029
self.play_tour(interval=5) # Tour automatically continues after 5 sec
3130

examples/tour_examples/google_tour.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def test_google_tour(self):
3030
# Create a website tour using the Bootstrap Tour JS library
3131
# Same as: self.create_bootstrap_tour()
3232
self.create_tour(theme="bootstrap")
33-
self.add_tour_step("See results here!", title="(autoplay in 5s)")
33+
self.add_tour_step("See Results Here!", title="(5-second autoplay)")
3434
self.add_tour_step("Here's the next tour:")
3535
self.play_tour(interval=5) # Tour automatically continues after 5 sec
3636

examples/tour_examples/hopscotch_google_tour.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def test_google_tour(self):
2424
self.wait_for_element("#search")
2525

2626
self.create_hopscotch_tour()
27-
self.add_tour_step(
28-
"See results here!", title="(autoplay in 5s)")
27+
self.add_tour_step("See Results Here!", title="(5-second autoplay)")
2928
self.add_tour_step("Here's the next tour:")
3029
self.play_tour(interval=5) # Tour automatically continues after 5 sec
3130

examples/tour_examples/introjs_google_tour.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def test_google_tour(self):
2424
self.wait_for_element("#search")
2525

2626
self.create_introjs_tour()
27-
self.add_tour_step("See results here!", title="(autoplay in 5s)")
27+
self.add_tour_step("See Results Here!", title="(5-second autoplay)")
2828
self.add_tour_step("Here's the next tour:")
2929
self.play_tour(interval=5) # Tour automatically continues after 5 sec
3030

examples/tour_examples/shepherd_google_tour.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ def test_google_tour(self):
2424
self.wait_for_element("#search")
2525

2626
self.create_shepherd_tour(theme="square-dark")
27-
self.add_tour_step(
28-
"See results here!", title="(autoplay in 5s)", theme="square")
27+
self.add_tour_step("See Results Here!", title="(5-second autoplay)")
2928
self.add_tour_step("Here's the next tour:")
3029
self.play_tour(interval=5) # Tour automatically continues after 5 sec
3130

0 commit comments

Comments
 (0)