Skip to content

Commit d9642e1

Browse files
committed
Update ReadMe files
1 parent e10bc32 commit d9642e1

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
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/super_logo_3.png" title="SeleniumBase" align="center" height="45">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
1+
[<img src="https://cdn2.hubspot.net/hubfs/100006/images/super_logo_5b.png" title="SeleniumBase" align="center" height="45">](https://github.com/seleniumbase/SeleniumBase/blob/master/README.md)
22

33
[<img src="https://img.shields.io/github/release/seleniumbase/SeleniumBase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/releases) [<img src="https://dev.azure.com/seleniumbase/seleniumbase/_apis/build/status/seleniumbase.SeleniumBase?branchName=master" alt=" " />](https://dev.azure.com/seleniumbase/seleniumbase/_build/latest?definitionId=1&branchName=master) [<img src="https://travis-ci.org/seleniumbase/SeleniumBase.svg?branch=master" alt=" " />](https://travis-ci.org/seleniumbase/SeleniumBase) [<img src="https://badges.gitter.im/seleniumbase/SeleniumBase.svg" alt=" " />](https://gitter.im/seleniumbase/SeleniumBase) [<img src="https://img.shields.io/badge/license-MIT-22BBCC.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/blob/master/LICENSE) [<img src="https://img.shields.io/github/stars/seleniumbase/seleniumbase.svg" alt=" " />](https://github.com/seleniumbase/SeleniumBase/stargazers)<br />
44

help_docs/customizing_test_runs.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,28 +66,30 @@ Here's the command-line option to add to tests: (See [examples/custom_settings.p
6666
#### **Running tests on [BrowserStack](https://www.browserstack.com/automate#)'s Selenium Grid, the [Sauce Labs](https://saucelabs.com/products/open-source-frameworks/selenium) Selenium Grid, the [TestingBot](https://testingbot.com/features) Selenium Grid, (or your own):**
6767

6868
Here's how to connect to a BrowserStack Selenium Grid server for running tests:
69-
7069
```bash
7170
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
7271
```
7372

7473
Here's how to connect to a Sauce Labs Selenium Grid server for running tests:
75-
7674
```bash
7775
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
7876
```
7977

8078
Here's how to connect to a TestingBot Selenium Grid server for running tests:
81-
8279
```bash
8380
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
8481
```
85-
Here's how to connect to a CrossBrowserTesting Selenium Grid server for running tests:
8682

83+
Here's how to connect to a CrossBrowserTesting Selenium Grid server for running tests:
8784
```bash
8885
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
8986
```
9087

88+
Here's how to connect to a LambdaTest Selenium Grid server for running tests:
89+
```bash
90+
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
91+
```
92+
9193
Or you can create your own Selenium Grid for test distribution. ([See this ReadMe for details](https://github.com/seleniumbase/SeleniumBase/blob/master/seleniumbase/utilities/selenium_grid/ReadMe.md))
9294

9395
#### **Example tests using Logging:**

integrations/google_cloud/ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Building a browser-based test automation server on the [Google Cloud Platform](https://cloud.google.com/) by using [SeleniumBase](https://github.com/seleniumbase/SeleniumBase)
22

3-
(This tutorial, [from a previous Google Cloud Meetup](http://www.meetup.com/Boston-Google-Cloud-Meetup/events/230839686/?showDescription=true), will teach you how to setup a Linux server for running automated browser tests. The cost of running this server is about [$13.61/month on Google Cloud](https://console.cloud.google.com/launcher/details/bitnami-launchpad/jenkins) (enough to handle **6 parallel tests**). This is much less expensive than using competitors such as [BrowserStack](https://www.browserstack.com/pricing) or [Sauce Labs](https://saucelabs.com/pricing) **for the SAME number of parallel tests**.)
3+
(This tutorial, [from a previous Google Cloud Meetup](http://www.meetup.com/Boston-Google-Cloud-Meetup/events/230839686/?showDescription=true), will teach you how to setup a Linux server for running automated browser tests. The cost of running this server is about [$13.61/month on Google Cloud](https://console.cloud.google.com/launcher/details/bitnami-launchpad/jenkins) (enough to handle **5 parallel tests**). This is less expensive than using competitors such as [BrowserStack](https://www.browserstack.com/pricing) or [Sauce Labs](https://saucelabs.com/pricing).)
44

55
#### Step 1. Open the Google Cloud Platform Cloud Launcher
66

seleniumbase/utilities/selenium_grid/ReadMe.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,28 +38,29 @@ pytest test_suite.py --server=IP_ADDRESS --port=4444
3838
You can also run your tests on someone else's Selenium Grid to avoid managing your own. Here are some Selenium Grids that you can use (and the run command format):
3939

4040
* [BrowserStack](https://www.browserstack.com/automate#) Selenium Grid:
41-
4241
```
4342
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
4443
```
4544

4645
* [Sauce Labs](https://saucelabs.com/products/open-source-frameworks/selenium) Selenium Grid:
47-
4846
```
4947
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
5048
```
5149

5250
* [TestingBot](https://testingbot.com/features) Selenium Grid:
53-
5451
```
5552
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
5653
```
5754

5855
* [CrossBrowserTesting](https://help.crossbrowsertesting.com/selenium-testing/getting-started/python/) Selenium Grid:
59-
6056
```bash
6157
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
6258
```
6359

60+
* [LambdaTest](https://www.lambdatest.com/selenium-automation) Selenium Grid:
61+
```bash
62+
pytest my_first_test.py --server=USERNAME:[email protected] --port=80
63+
```
64+
6465
#### More info about the Selenium Grid Hub can be found here:
6566
* [https://github.com/SeleniumHQ/selenium/wiki/Grid2](https://github.com/SeleniumHQ/selenium/wiki/Grid2)

0 commit comments

Comments
 (0)