@@ -29,16 +29,17 @@ class MyTourClass(BaseCase):
2929 self .open(' https://google.com' )
3030 self .wait_for_element(' input[title="Search"]' )
3131 self .create_tour(theme = " dark" )
32- self .add_tour_step(" Click to begin the Google Tour!" ,
33- title = " SeleniumBase Guided Tours" )
34- self .add_tour_step(" Type in your search query here." ,
35- ' input[title="Search"]' )
36- self .add_tour_step(" Then click here to search!" ,
37- ' input[value="Google Search"]' ,
38- alignment = " bottom" , theme = " arrows" )
39- self .add_tour_step(" Or click here to see the top result." ,
40- ''' [value="I'm Feeling Lucky"]''' ,
41- alignment = " bottom" , theme = " arrows" )
32+ self .add_tour_step(
33+ " Click to begin the Google Tour!" , title = " SeleniumBase Tours" )
34+ self .add_tour_step(
35+ " Type in your search query here." , ' input[title="Search"]' )
36+ self .add_tour_step(
37+ " Then click here to search!" , ' input[value="Google Search"]' ,
38+ alignment = " bottom" , theme = " arrows" )
39+ self .add_tour_step(
40+ " Or click here to see the top result." ,
41+ ''' [value="I'm Feeling Lucky"]''' ,
42+ alignment = " bottom" , theme = " arrows" )
4243 self .play_tour()
4344```
4445
0 commit comments