File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ def test_error_page(self):
14
14
self .highlight ('img[alt*="404"]' )
15
15
self .highlight ("img#octobi_wan_catnobi" )
16
16
self .highlight ("img#speeder" )
17
+ self .save_screenshot_after_test = True # Automatic if test fails
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
1
2
from seleniumbase import BaseCase
2
3
3
4
@@ -9,7 +10,9 @@ def test_google_maps_tour(self):
9
10
self .wait_for_element ("#zoom" , timeout = 20 )
10
11
11
12
self .create_tour (theme = "introjs" )
12
- self .add_tour_step ("Welcome to Google Maps" , title = "SeleniumBase Tour" )
13
+ self .add_tour_step (
14
+ "Welcome to Google Maps" , title = "✅ SeleniumBase Tours 🌎"
15
+ )
13
16
self .add_tour_step (
14
17
"The location goes here." , "#searchboxinput" , title = "Search Box"
15
18
)
@@ -45,7 +48,8 @@ def test_google_maps_tour(self):
45
48
alignment = "left" ,
46
49
)
47
50
self .add_tour_step (
48
- "Thanks for using SeleniumBase Tours!" , title = "End of Guided Tour"
51
+ "Thanks for using SeleniumBase Tours!" ,
52
+ title = "🚃 End of Guided Tour 🚃"
49
53
)
50
54
self .export_tour (filename = "maps_introjs_tour.js" )
51
55
self .play_tour ()
You can’t perform that action at this time.
0 commit comments