Skip to content

Commit 240034b

Browse files
committed
Update the Docs
1 parent d5f6b6a commit 240034b

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/SB_Logo16.png" title="SeleniumBase" height="48">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
1+
<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_2d1.png" title="SeleniumBase" height="48">
22

33
[<img src="https://img.shields.io/pypi/v/seleniumbase.svg" alt="Version" />](https://pypi.python.org/pypi/seleniumbase) [<img src="https://img.shields.io/badge/python-2.7,_3.*-22AADD.svg" alt="Python versions" />](https://pypi.python.org/pypi/seleniumbase) [<img src="https://travis-ci.org/seleniumbase/SeleniumBase.svg?branch=master" alt="Build Status" />](https://travis-ci.org/seleniumbase/SeleniumBase) [<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt="Join the Gitter Chat" />](https://gitter.im/seleniumbase/SeleniumBase) [<img src="http://img.shields.io/badge/license-MIT-22BBCC.svg" alt="MIT License" />](https://github.com/seleniumbase/SeleniumBase/blob/master/LICENSE) [<img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg" alt="GitHub Stars" />](https://github.com/seleniumbase/SeleniumBase/stargazers)<br />
44

examples/tour_examples/ReadMe.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)