Skip to content

tomatohater/sauceclient

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

sauceclient Python package

Python client library for Sauce Labs API.

https://travis-ci.org/cgoldberg/sauceclient.svg?branch=master

About sauceclient

sauceclient is a Python client library for the Sauce Labs API.

It gives you access to Sauce Labs:

  • Account
  • Platform Information
  • JavaScript Unit Tests
  • Jobs & Assets (Logs, Videos, Screenshots)
  • Temporary Storage
  • Tunnels

sauceclient is not used for running tests on Sauce Labs' service. (That is done via Selenium WebDriver).

Install

  • with pip:

    pip install sauceclient
    

About Sauce Labs

Sauce Labs is a service for running remote Selenium WebDriver tests. They have VM's with 800+ browser/OS combinations, allowing comprehensive cross-browser cross-platform test coverage.

Example Usage

  • public access:

    import sauceclient
    
    sc = sauceclient.SauceClient()
    status = sc.information.get_status()
    
  • with authorization:

    import sauceclient
    
    sc = sauceclient.SauceClient(
        'sauce-username',
        'sauce-access-key',
    )
    jobs = sc.jobs.get_jobs(full=True, limit=5)
    

Compatibility Note

Due to changes in the SauceLabs REST API, some of sauceclient's classes and methods have been removed or renamed since the pre-1.0 releases.

Related Links

About

Python client library for Sauce Labs API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%