├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── DOCS.md ├── README.rst ├── pytest_mozwebqa ├── __init__.py ├── cloud │ ├── __init__.py │ ├── browserstack.py │ └── saucelabs.py ├── pytest_mozwebqa.py └── selenium_client.py ├── setup.py └── testing ├── README.md ├── conftest.py ├── empty.xpi ├── test_browserstack.py ├── test_destructive.py ├── test_saucelabs.py ├── test_startup.py ├── test_timeout.py ├── test_usage.py ├── test_webdriver_client.py └── webserver.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/DOCS.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/README.rst -------------------------------------------------------------------------------- /pytest_mozwebqa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/pytest_mozwebqa/__init__.py -------------------------------------------------------------------------------- /pytest_mozwebqa/cloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/pytest_mozwebqa/cloud/__init__.py -------------------------------------------------------------------------------- /pytest_mozwebqa/cloud/browserstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/pytest_mozwebqa/cloud/browserstack.py -------------------------------------------------------------------------------- /pytest_mozwebqa/cloud/saucelabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/pytest_mozwebqa/cloud/saucelabs.py -------------------------------------------------------------------------------- /pytest_mozwebqa/pytest_mozwebqa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/pytest_mozwebqa/pytest_mozwebqa.py -------------------------------------------------------------------------------- /pytest_mozwebqa/selenium_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/pytest_mozwebqa/selenium_client.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/setup.py -------------------------------------------------------------------------------- /testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/README.md -------------------------------------------------------------------------------- /testing/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/conftest.py -------------------------------------------------------------------------------- /testing/empty.xpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/empty.xpi -------------------------------------------------------------------------------- /testing/test_browserstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/test_browserstack.py -------------------------------------------------------------------------------- /testing/test_destructive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/test_destructive.py -------------------------------------------------------------------------------- /testing/test_saucelabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/test_saucelabs.py -------------------------------------------------------------------------------- /testing/test_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/test_startup.py -------------------------------------------------------------------------------- /testing/test_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/test_timeout.py -------------------------------------------------------------------------------- /testing/test_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/test_usage.py -------------------------------------------------------------------------------- /testing/test_webdriver_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/test_webdriver_client.py -------------------------------------------------------------------------------- /testing/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mozilla/pytest-mozwebqa/HEAD/testing/webserver.py --------------------------------------------------------------------------------