Skip to content

Update ipython version and docs #828

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ readme-renderer==29.0
pymdown-extensions==8.1.1
lunr==0.5.8
mkdocs==1.1.2
mkdocs-material==7.0.2
mkdocs-material==6.2.3
mkdocs-exclude-search==0.3.1
mkdocs-simple-hooks==0.1.2
mkdocs-material-extensions==1.0.1
mkdocs-minify-plugin==0.4.0
4 changes: 2 additions & 2 deletions help_docs/customizing_test_runs.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[<img src="https://seleniumbase.io/cdn/img/super_logo_sb.png" title="SeleniumBase" width="320">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)

<h2><img src="https://seleniumbase.io/img/logo6.png" title="SeleniumBase" width="32" /> CLI Options</h2>
# pytest CLI Options

You can customize test runs from the command-line interface thanks to [SeleniumBase's pytest plugin](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/pytest_plugin.py), which adds CLI options for setting/enabling the browser type, headless mode, mobile mode, multithreading mode, demo mode, proxy config, user agent config, browser extensions, and more.
SeleniumBase's [pytest plugin](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/plugins/pytest_plugin.py) lets you customize test runs from the CLI (Command-Line Interface), which adds options for setting/enabling the browser type, headless mode, mobile mode, demo mode, multi-threading mode, reuse-session mode, proxy config, user agent config, browser extensions, report mode, and more.

Here are some examples of configuring tests, which can be run from the [examples/](https://github.com/seleniumbase/SeleniumBase/tree/master/examples) folder:

Expand Down
4 changes: 2 additions & 2 deletions integrations/google_cloud/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ sudo python setup.py develop
pytest examples/my_first_test.py --headless
```

#### Step 14. If you like nosetests better than pytest, that works too
#### Step 14. If you prefer using nosetests, that works too

```bash
nosetests examples/my_first_test.py --headless
Expand Down Expand Up @@ -138,7 +138,7 @@ If you have a web application that you want to test, you'll be able to create Se

#### Congratulations! You're now well on your way to becoming a build & release / automation engineer!

## MySQL DB setup instructions
### MySQL DB setup instructions

#### Step 21. Return to the Google Cloud Launcher and launch a MySQL Instance

Expand Down
7 changes: 5 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ theme:
# collapse_navigation: false
# titles_only: false
include_search_page: false
search_index_only: false
search_index_only: true
static_templates:
- 404.html
features:
Expand All @@ -58,9 +58,12 @@ theme:
# Plugins
plugins:
- search:
separator: '[\s\-]+'
separator: '[\s]+'
prebuild_index: false
lang: en
- exclude-search:
exclude:
- chinese.md
- minify:
minify_html: true
- mkdocs-simple-hooks:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ prompt-toolkit==3.0.16;python_version>="3.6"
ipython==5.10.0;python_version<"3.5"
ipython==6.5.0;python_version>="3.5" and python_version<"3.6"
ipython==7.16.1;python_version>="3.6" and python_version<"3.7"
ipython==7.20.0;python_version>="3.7"
ipython==7.21.0;python_version>="3.7"
colorama==0.4.4
pathlib2==2.3.5;python_version<"3.5"
importlib-metadata==2.0.0;python_version<"3.6"
Expand Down
2 changes: 1 addition & 1 deletion seleniumbase/__version__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# seleniumbase package
__version__ = "1.56.1"
__version__ = "1.56.2"
2 changes: 1 addition & 1 deletion seleniumbase/console_scripts/ReadMe.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[<img src="https://seleniumbase.io/cdn/img/super_logo_sb.png" title="SeleniumBase" width="290">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)

<h2><img src="https://seleniumbase.io/img/logo3a.png" title="SeleniumBase" width="28" /> Console Scripts</h2>
## Console Scripts

SeleniumBase console scripts help you get things done more easily, such as installing web drivers, creating a test directory with necessary configuration files, converting old WebDriver unittest scripts into SeleniumBase code, translating tests into multiple languages, and using the Selenium Grid.

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
'ipython==5.10.0;python_version<"3.5"',
'ipython==6.5.0;python_version>="3.5" and python_version<"3.6"',
'ipython==7.16.1;python_version>="3.6" and python_version<"3.7"',
'ipython==7.20.0;python_version>="3.7"',
'ipython==7.21.0;python_version>="3.7"',
'colorama==0.4.4',
'pathlib2==2.3.5;python_version<"3.5"', # Sync with "virtualenv"
'importlib-metadata==2.0.0;python_version<"3.6"', # Sync "virtualenv"
Expand Down