Skip to content

Commit 914b518

Browse files
committed
Update the docs
1 parent e39faa0 commit 914b518

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

examples/tour_examples/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
![](https://cdn2.hubspot.net/hubfs/100006/images/google_tour.gif "SeleniumBase Tours")<br>
44

5-
SeleniumBase Tours utilize the [HubSpot Shepherd Library](http://github.hubspot.com/shepherd/docs/welcome/) for creating and running tours, demos, and walkthroughs on any website.
5+
SeleniumBase Tours utilize the [Shepherd Library](https://cdnjs.com/libraries/shepherd/1.8.1) for creating and running tours, demos, and walkthroughs on any website.
66

77
To utilize tours, there are three methods that you need to know at the basic level (which contain optional arguments):
88

help_docs/happy_customers.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
* [Jana](http://jana.com/)
44
* [Veracode](http://www.veracode.com/)
55
* [CA Technologies](https://www.ca.com/)
6+
* [Broadcom](https://www.broadcom.com/)
67
* [MIT](http://web.mit.edu/)
78
* [iboss](https://www.iboss.com/)
89
* [Akamai](https://www.akamai.com/)

help_docs/install_python_pip_git.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## Installation instructions for Python, pip, brew, git, virtualenv, and virtualenvwrapper
22

3-
43
### [Python 2.7 or 3.*](https://www.python.org/downloads/)
54

6-
If you're a MAC user, Python should already come preinstalled on your machine. You can use both Python 2.7 or Python 3 with SeleniumBase. If you're on a MAC and have [Homebrew](https://brew.sh/) installed (but not Python 3) you can use: ``brew install python3`` if you wish to use Python 3 instead of Python 2.7. Or you can just get everything from [https://www.python.org/downloads/](https://www.python.org/downloads/).
5+
If you're a MAC user, Python should already come preinstalled on your machine. You can use both Python 2.7 or Python 3.6+ with SeleniumBase. If you're on a MAC and have [Homebrew](https://brew.sh/) installed, you can use: ``brew install python3`` to install Python 3. Or you can just get everything from [https://www.python.org/downloads/](https://www.python.org/downloads/).
76

8-
If you're a WINDOWS user, [download Python 2.7 from here](https://www.python.org/downloads/release/python-2713/) OR [download Python 3.6.2 from here](https://www.python.org/downloads/release/python-362/).
7+
For MAC, there's also the official docs.python-guide.org instructions here: [Installing Python 2 on Mac OS X](https://docs.python-guide.org/starting/install/osx/) and [Installing Python 3 on Mac OS X](https://docs.python-guide.org/starting/install3/osx/#install3-osx).
98

9+
If you're a WINDOWS user, [download Python 2.7 from here](https://www.python.org/downloads/release/python-2713/) OR [download Python 3.6.6 from here](https://www.python.org/downloads/release/python-366/).
1010

1111
### [Pip](https://en.wikipedia.org/wiki/Pip_%28package_manager%29)
1212

help_docs/method_summary.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,9 @@ self.wait_for_text(text, selector, by=By.CSS_SELECTOR,
221221
self.find_text(text, selector, by=By.CSS_SELECTOR,
222222
timeout=settings.LARGE_TIMEOUT)
223223

224+
self.assert_text_visible(text, selector, by=By.CSS_SELECTOR,
225+
timeout=settings.SMALL_TIMEOUT)
226+
224227
self.assert_text(text, selector, by=By.CSS_SELECTOR,
225228
timeout=settings.SMALL_TIMEOUT)
226229

0 commit comments

Comments
 (0)