Page History
...
Include Page | ||||
---|---|---|---|---|
|
Running the Example Code
- Copy the example code and save it into a file called
first_test.py
.
Make sure your username and access key are included in the URL passed through to thecommand_executor
. - Open terminal and navigate to the directory where the file is located.
Execute the test:
Code Block python first_test.py
Check your dashboard and you will see that your test has just run on Sauce!
Tip | ||
---|---|---|
| ||
The implicitly wait method tells the browser to wait a set amount of time (in seconds) for elements to appear on the page before giving up. Without it, slow loading DOMs could cause our tests to fail when they might otherwise pass. Using implicit waits is one of our recommended best practices. |
...
If you look at the code closely, you'll see that basics for setting up a test to run on sauce are very straightforward, and really only require two elements.
Include Page | ||||
---|---|---|---|---|
|
...
Running the Example Code
- Copy the example code and save it into a file called
first_test.py
.
Make sure your username and access key are included in the URL passed through to the command_executor. - Open terminal and navigate to the directory where the file is located.
Execute the test:
Code Block python first_test.py
Check your dashboard and you will see that your test has just run on Sauce!
Running Tests Against Local Applications
...
Sauce Connect is a tunneling app that allows you to execute tests securely when testing behind firewalls or on localhost. For more detailed information, please visit see the Sauce Connect docs.
...
Reporting to the Sauce Labs Dashboard
Recording Pass/Failure Results
...