{ "info": { "author": "Connor de la Cruz", "author_email": "connor.c.delacruz@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Quality Assurance", "Topic :: Software Development :: Testing", "Topic :: Utilities" ], "description": "====================\nWebDriver Test Tools\n====================\n\n|pypi|\n|github|\n\nA front-end testing framework using `Selenium WebDriver`_ and Python.\n\n.. |pypi| image:: https://img.shields.io/pypi/v/webdriver-test-tools.svg\n :alt: PyPI\n :target: http://pypi.python.org/pypi/webdriver-test-tools\n\n.. |github| image:: https://img.shields.io/badge/GitHub--green.svg?style=social&logo=github\n :alt: GitHub\n :target: https://github.com/connordelacruz/webdriver-test-tools\n\n.. _Selenium WebDriver: https://www.seleniumhq.org/docs/03_webdriver.jsp\n\n\n.. contents::\n :depth: 2\n\n\nOverview\n========\n\nWebDriver Test Tools provides a framework and utilities for writing front-end \nfunctional tests.\n\n\nFeatures\n--------\n\n- Framework for writing cross-browser front-end test suites\n- Pre-defined test functions for commonly used test procedures\n- Utilities and extended functionality for the Selenium WebDriver package\n- Implementation of the `Page Object Model`_ with pre-defined page objects for\n common elements (navbars, forms, etc)\n- Command line tool for quickly generating files and directories for new test\n projects\n- Mobile device layout emulation for responsive tests\n- Headless browser testing\n- Support for running tests on `BrowserStack`_\n\n.. _Page Object Model: https://martinfowler.com/bliki/PageObject.html\n.. _BrowserStack: https://www.browserstack.com/\n\n\nThis project uses Selenium WebDriver for automated browser actions and the\npython unittest library for the test framework, documentation for which can be\nfound below:\n\n- `Selenium with Python\n `__\n- `Python unit testing framework\n `__\n\n\nDocumentation\n-------------\n\nFull documentation for WebDriver Test Tools:\n\n - `WebDriver Test Tools Docs`_: Framework documentation\n - `webdriver_test_tools Package API`_: Python package API\n\n.. _WebDriver Test Tools Docs: https://connordelacruz.com/webdriver-test-tools/\n.. _webdriver_test_tools Package API: https://connordelacruz.com/webdriver-test-tools/webdriver_test_tools.html\n\n\nSet Up\n======\n\nPrerequisites\n-------------\n\nPython\n~~~~~~\n\n- Python 3.4+\n- pip (included by default with Python 3.4+)\n\nDrivers\n~~~~~~~\n\n.. _driver-table:\n\nIn order to use Selenium, drivers will need to be installed for any browser\ntests will be run on. Below are currently supported drivers, their default\nenabled/disabled status, and their supported features:\n\n+----------------------+--------------------+-------------------+---------------+\n| Driver | Enabled by Default | Headless Browsing | Mobile Layout |\n+======================+====================+===================+===============+\n| `Google Chrome`_ | \u2713 | \u2713 | \u2713 |\n+----------------------+--------------------+-------------------+---------------+\n| `Firefox`_ | \u2713 | \u2713 | |\n+----------------------+--------------------+-------------------+---------------+\n| `Safari`_ | | | |\n+----------------------+--------------------+-------------------+---------------+\n| `Edge`_ | | | |\n+----------------------+--------------------+-------------------+---------------+\n| `Internet Explorer`_ | | | |\n+----------------------+--------------------+-------------------+---------------+\n\nCross-platform browsers are enabled by default, while platform-specific browsers\nare disabled by default. You can enable or disable drivers in\n``/config/browser.py`` by setting the corresponding value in\n``BrowserConfig.ENABLED_BROWSERS`` to ``True`` or ``False``, respectively.\n\n.. _Google Chrome: https://sites.google.com/a/chromium.org/chromedriver/downloads\n.. _Firefox: https://github.com/mozilla/geckodriver/releases\n.. _Safari: https://webkit.org/blog/6900/webdriver-support-in-safari-10/ \n.. _Internet Explorer: https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver\n.. _Edge: https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver/\n\nThe following documentation goes into detail on configuring browsers for\ntesting:\n\n - `Testing with Additional Browsers`_: Enabling/disabling browsers, per-test\n skipping for certain browsers, emulating mobile browsers, and headless\n browser testing\n - `BrowserStack Support`_: Enabling and configuring testing on BrowserStack\n\n.. _Testing with Additional Browsers: https://connordelacruz.com/webdriver-test-tools/additional_browsers.html\n.. _BrowserStack Support: https://connordelacruz.com/webdriver-test-tools/browserstack.html\n\n\nInstallation\n------------\n\nThe package can be installed using pip:\n\n::\n\n pip install webdriver-test-tools\n\n**Note:** Command may be ``pip3`` instead of ``pip`` depending on the system.\n\n\nCreating a Test Suite\n---------------------\n\nThe package itself does not contain test cases. To generate files for a new test\nsuite, change into the desired directory and run:\n\n::\n\n wtt init\n\nThis will generate a new test package with template files and project\ndirectories.\n\nThe following documentation goes into detail on test projects:\n\n - `Test Projects`_: Test project setup, configuration, command line usage,\n and directory structure\n - `Example Test Project`_: Step-by-step tutorial with a simple example test\n project\n\n\n.. _Test Projects: https://connordelacruz.com/webdriver-test-tools/test_projects.html\n.. _Example Test Project: https://connordelacruz.com/webdriver-test-tools/example_project.html\n\n\nCommand Line Usage\n==================\n\nTo initialize a new test project in the current directory:\n\n::\n\n wtt init [] [<\"Project Title\">] [--no-gitignore] [--no-readme]\n\nWhere:\n\n- ````: Name for the new test package. (alphanumeric characters\n and underscores only. Cannot start with a number)\n- ``<\"Project Title\">``: (Optional) Friendly name for the test project. Defaults\n to the value of if not provided\n- ``--no-gitignore``: Do not create .gitignore files for project root and log\n directory\n- ``--no-readme``: Do not generate README file with usage info\n\nIf no arguments are provided, a prompt will walk you through project\ninitialization.\n\nFor info on command line arguments:\n\n::\n\n wtt --help\n\nTo print the version number:\n\n::\n\n wtt --version\n\n**Note:** ``wtt`` and ``webdriver_test_tools`` can be used interchangeably.\n\n\nContributing\n============\n\nPlease read the `contributing guidelines`_ for details on reporting bugs,\nrequesting features, and making contributions to the project.\n\n.. _contributing guidelines: https://github.com/connordelacruz/webdriver-test-tools/blob/master/.github/CONTRIBUTING.rst\n\n\n\n\n\n=====================\nTest Project Overview\n=====================\n\n\nSetup\n=====\n\nInitialization\n--------------\n\nTo generate files for a new test suite, change into the desired directory and\nrun:\n\n::\n\n wtt init\n\nThis will generate a new test package with template files and project\ndirectories.\n\n\n(Optional) Setup Virtual Environment\n------------------------------------\n\nIf using `virtualenv `_, initialize the\nvirtual environment before installing the test package:\n\n::\n \n virtualenv venv\n source ./venv/bin/activate\n\n\nTest Package Installation\n-------------------------\n\nAfter initializing the test project, run the following command from the project\nroot directory:\n\n::\n\n pip install -e .\n\nInstalling with the ``-e`` flag will update the package automatically when\nchanges are made to the source code.\n\n\nConfiguration\n-------------\n\nAfter initializing a project, the URL of the site to be tested will need to be\nconfigured. In ``/config/site.py``, set the ``SITE_URL`` and\n``BASE_URL`` of the ``SiteConfig`` class. You can add any other URLs you'll need\nas class variables as well. \n\n\nBasic Command Line Usage\n========================\n\n**Usage:**\n\n::\n\n [-h] \n\nIf no ```` is specified, the ``run`` command will be executed by\ndefault.\n\n**Note:** If the test package was not installed with ``pip``, run test packages\ncommands using ``python -m ``.\n\nFor info on command line arguments, use the ``--help`` (or ``-h``) argument:\n\n::\n\n --help\n\n\nCreating New Project Files\n--------------------------\n\nNew tests and page objects can be generated using the ``new`` command:\n\n::\n\n new [] [] [] [-d ] [-f]\n\nWhere:\n\n- ````: The type of file to create (``test`` or ``page``)\n- ````: Filename to use for the new python module\n- ````: Name to use for the initial class\n- ````: (Optional) Description for the initial class\n- ``-f``: (Optional) Force overwrite if a file with the same name already exists\n\nIf no arguments are provided, a prompt will walk you through generating the new\nfile. Alternatively, you can skip the prompts by using the arguments shown in\nthe following sections.\n\n\nCreating New Tests\n~~~~~~~~~~~~~~~~~~\n\nNew test modules can be generated using the ``new test`` command:\n\n::\n\n new test \n\nWhere ```` is the filename for the new test and ````\nis the class name for the test case.\n\n\nThe ``--description`` (or ``-d``) argument can be used to add a description for\nthe initial test case class:\n\n::\n\n new test -d \"Test case description\"\n\n\nIf a test module with the same ```` already exists, ``new test``\nwill not overwrite it by default. The ``--force`` (or ``-f``) argument can be\nused to force overwrite existing files:\n\n::\n\n new test --force\n\n\nCreating New Page Objects\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\nNew page object modules can be generated using the ``new page`` command:\n\n::\n\n new page \n\nWhere ```` is the filename for the new module and\n```` is the class name for the page object.\n\nThe ``--description`` (or ``-d``) argument can be used to add a description for\nthe initial page object class:\n\n::\n\n new page -d \"Page object description\"\n\nBy default, the new class will be a generic ``BasePage`` subclass. The\n``--prototype`` (or ``-p``) argument can be used to specify a `page object\nprototype`_ class to use as a parent class for the new page object:\n\n::\n\n new page -p \n\nFor a list of valid ```` options, run `` new page\n--help``.\n\n.. _page object prototype: https://connordelacruz.com/webdriver-test-tools/utilities.html#page-object-prototypes\n\nPage object prototypes support YAML file parsing to simplify the syntax of\nrepresenting elements. Whether YAML files or Python-only files are generated by\ndefault is configured in ``/config/projectfiles.py`` by setting\nthe ``ENABLE_PAGE_OBJECT_YAML`` variable of the ``ProjectFilesConfig`` class.\n\nThe default setting can be overridden by using command line arguments. If\n``ENABLE_PAGE_OBJECT_YAML`` is ``True``, the ``--no-yaml`` (or ``-Y``) argument\ncan be used to only generate ``.py`` files:\n\n::\n \n new page --no-yaml\n\nIf ``ENABLE_PAGE_OBJECT_YAML`` is ``False``, the ``--yaml`` (or ``-y``) argument\ncan be used to generate ``.py`` and ``.yml`` files for supported prototypes:\n\n::\n\n new page --yaml\n\n.. _Page Object YAML Files documentation: https://connordelacruz.com/webdriver-test-tools/yaml.html\n\nIf a page module with the same ```` already exists, ``new page``\nwill not overwrite it by default. The ``--force`` (or ``-f``) argument can be\nused to force overwrite existing files:\n\n::\n\n new page --force\n\n\nRunning Tests\n-------------\n\nBasic Usage\n~~~~~~~~~~~\n\nTo run all tests:\n\n::\n\n \n\n\nRunning Specific Tests\n~~~~~~~~~~~~~~~~~~~~~~\n\nTo run all test cases in one or more modules, use the ``--module`` (or ``-m``)\nargument:\n\n::\n\n --module [ ...]\n\nTo skip all test cases in one or more modules, use the ``--skip-module`` (or\n``-S``) argument:\n\n::\n\n --skip-module [ ...]\n\nTo run specific test case classes or methods, use the ``--test`` (or ``-t``)\nargument:\n\n::\n\n --test [.] [[.] ...]\n\nTo skip certain test cases or methods, use the ``--skip`` (or ``-s``) argument:\n\n::\n\n --skip [.] [[.] ...]\n\n\nThe ``--test`` and ``--skip`` arguments both support wildcards (``*``) in class\nand method names.\n\nThese arguments can be used together. When combined, they are processed in the\nfollowing order:\n\n #. ``--skip-module`` removes the specified modules from the set of tests\n #. ``--module`` reduces the set of tests to those in the specified modules\n #. ``--test`` reduces the set of tests to the specified classes and methods\n #. ``--skip`` removes the specified classes and methods from the set of tests\n\n\nUsing Specific Browsers\n~~~~~~~~~~~~~~~~~~~~~~~\n\nTo do any of the above in specific browsers rather than running in all available\nbrowsers, use the ``--browser`` (or ``-b``) argument:\n\n::\n\n --browser [\n--help``.\n\n\nUsing Headless Browsers\n~~~~~~~~~~~~~~~~~~~~~~~\n\nBy default, tests run using the browser's GUI. While it can be helpful to see\nwhat's going on during test execution, loading and rendering the browser window\ncan be resource-intensive and slows down performance during test execution.\n\nTo improve performance, tests can be run in `headless browsers`_ using the\n``--headless`` (or ``-H``) argument:\n\n::\n\n --headless\n\n**Note:** When using the ``--headless`` argument, tests will only be run with\nthe following web drivers that support running in a headless environment:\n\n * `Chrome `__\n * `Firefox `__\n\n.. _headless browsers: https://en.wikipedia.org/wiki/Headless_browser\n\n\nUsing BrowserStack\n~~~~~~~~~~~~~~~~~~\n\nTest projects can be configured to run tests on `BrowserStack`_. Once\nBrowserStack support is enabled, tests can be run on BrowserStack using the\n``--browserstack`` (or ``-B``) argument:\n\n::\n\n --browserstack\n\nSee the documentation on `BrowserStack Support`_ for more details and setup\ninstructions.\n\n.. _BrowserStack: https://www.browserstack.com/\n.. _BrowserStack Support: https://connordelacruz.com/webdriver-test-tools/browserstack.html\n\n\nConfiguring Output\n~~~~~~~~~~~~~~~~~~\n\nBy default, detailed output is displayed when running tests. To reduce or\nsuppress output, use the ``--verbosity`` (or ``-v``) argument:\n\n::\n\n --verbosity \n\nWhere ```` is one of the following:\n\n * 0 - Final results only\n * 1 - Final results and progress indicator\n * 2 - Full output\n\n**Note:** The default output level can be changed in\n``/config/test.py`` by setting the ``DEFAULT_VERBOSITY``\nattribute of the ``TestSuiteConfig`` class.\n\n\nList Available Tests\n--------------------\n\nBasic Usage\n~~~~~~~~~~~\n\nTo print a list of available test classes and methods:\n\n::\n\n list\n\nTo include docstrings for each test class and method in output:\n\n::\n\n list --verbose\n\n\nListing Specific Tests\n~~~~~~~~~~~~~~~~~~~~~~\n\nTo only list test classes from specific modules:\n\n::\n\n list --module [ ...]\n\nTo omit specific modules:\n\n::\n\n list --skip-module [ ...]\n\nTo only list specific test classes:\n\n::\n\n list --test [ ...]\n\nTo skip certain test classes in output:\n\n::\n\n --skip [ ...]\n\nSee `Running Specific Tests`_ for more info on these arguments.\n\n\nProject Structure\n=================\n\n``wtt init`` will create the following files and directories\ninside the project directory:\n\n::\n\n /\n \u251c\u2500\u2500 README.rst\n \u251c\u2500\u2500 setup.py\n \u2514\u2500\u2500 /\n \u251c\u2500\u2500 __main__.py\n \u251c\u2500\u2500 __init__.py\n \u251c\u2500\u2500 config/\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 browser.py\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 browserstack.py\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 projectfiles.py\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 site.py\n \u2502\u00a0\u00a0 \u251c\u2500\u2500 test.py\n \u2502\u00a0\u00a0 \u2514\u2500\u2500 webdriver.py\n \u251c\u2500\u2500 data.py\n \u251c\u2500\u2500 log/\n \u251c\u2500\u2500 pages/\n \u2502 \u2514\u2500\u2500 __init__.py\n \u251c\u2500\u2500 screenshot/\n \u2514\u2500\u2500 tests/\n \u2514\u2500\u2500 __init__.py\n\nThis test structure is designed to be used with the `Page Object Model\n`__. Interaction with the page\nshould be handled by page objects to minimize the need to alter tests whenever\nthe HTML is changed.\n\n\nTest Project Root Contents\n--------------------------\n\n* ``setup.py``: Python package setup file that allows the new test suite to be\n installed as a pip package.\n\n\nTest Package Root Contents\n--------------------------\n\n* ``__main__.py``: Required to run tests from the command line. \n* ``__init__.py``: Empty init file so Python recognizes the directory as a\n package.\n* ``data.py``: Module for storing static data for tests that must use specific\n values (e.g. emails, usernames, etc).\n\n\nTest Package Directories\n------------------------\n\nconfig/\n~~~~~~~\n\nConfigurations used by test scripts for site URLs, web driver options, and the\npython unittest framework.\n\n* ``browser.py``: Configure which browsers to run tests in.\n* ``browserstack.py``: Enable and configure testing with `BrowserStack\n `__.\n* ``projectfiles.py``: Configure defaults for generating project files with the\n ``new`` command.\n* ``site.py``: Configure URLs used for testing.\n* ``test.py``: Configure the ``unittest.TestRunner`` class.\n* ``webdriver.py``: Configure WebDrivers and log output directory.\n\nlog/\n~~~~\n\nDefault output directory for WebDriver logs. This can be changed in\n``config/webdriver.py``.\n\npages/\n~~~~~~\n\nPage object classes for pages and components. These classes should handle\nlocating and interacting with elements on the page. See `Creating New Page\nObjects`_ for info on generating new page object modules.\n\nscreenshot/\n~~~~~~~~~~~\n\nDefault output directory for screenshots taken during test execution. This can \nbe changed in ``config/webdriver.py``.\n\ntests/\n~~~~~~\n\nTest case modules. These use page objects to interact with elements and assert\nthat the expected behavior occurs. See `Creating New Tests`_ for info on\ngenerating new test modules.", "description_content_type": "", "docs_url": null, "download_url": "https://github.com/connordelacruz/webdriver-test-tools/archive/3.2.0.tar.gz", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/connordelacruz/webdriver-test-tools/", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "webdriver-test-tools", "package_url": "https://pypi.org/project/webdriver-test-tools/", "platform": "", "project_url": "https://pypi.org/project/webdriver-test-tools/", "project_urls": { "Download": "https://github.com/connordelacruz/webdriver-test-tools/archive/3.2.0.tar.gz", "Homepage": "https://github.com/connordelacruz/webdriver-test-tools/" }, "release_url": "https://pypi.org/project/webdriver-test-tools/3.2.0/", "requires_dist": null, "requires_python": "", "summary": "A front-end testing framework using Selenium WebDriver and Python", "version": "3.2.0", "yanked": false, "yanked_reason": null }, "last_serial": 6043291, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "48161977a1cf417a113b4b98da5d9e87", "sha256": "861795b850086ae4411933767fbfc67f43799c7881a49d25c0b7fb5e4d39dec3" }, "downloads": -1, "filename": "webdriver_test_tools-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "48161977a1cf417a113b4b98da5d9e87", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 11714, "upload_time": "2018-03-05T19:44:14", "upload_time_iso_8601": "2018-03-05T19:44:14.305614Z", "url": "https://files.pythonhosted.org/packages/34/d4/85c4884ccdc7a7e54359abc478808e96a1e01ac009473e107f75652d73cf/webdriver_test_tools-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35416930610df126f7eec950eb54dca3", "sha256": "566ab0be1002010fd10ef29fd44fcd6e980c661c382c7e4677524820a1be83d7" }, "downloads": -1, "filename": "webdriver_test_tools-0.1.0.tar.gz", "has_sig": false, "md5_digest": "35416930610df126f7eec950eb54dca3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8892, "upload_time": "2018-03-05T20:00:21", "upload_time_iso_8601": "2018-03-05T20:00:21.662355Z", "url": "https://files.pythonhosted.org/packages/86/18/e45cd56a013ce378648acd4ee2e16414a05a54340548813f5f6ab1d61aae/webdriver_test_tools-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.0": [ { "comment_text": "", "digests": { "md5": "8c76e381a9df55ef3a1bf808a810e30b", "sha256": "f10db4490ab53ecaf1c7e86a0329c7a64105a72ed0a17f0e9e1380462fb6c9bd" }, "downloads": -1, "filename": "webdriver_test_tools-0.10.0.tar.gz", "has_sig": false, "md5_digest": "8c76e381a9df55ef3a1bf808a810e30b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17858, "upload_time": "2018-03-26T14:29:47", "upload_time_iso_8601": "2018-03-26T14:29:47.979902Z", "url": "https://files.pythonhosted.org/packages/0f/16/f92b8ab986a7b2982a31133ae7c3207a8452143a4490bbdf83ed2dbfa1f2/webdriver_test_tools-0.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.1": [ { "comment_text": "", "digests": { "md5": "83a0fd9d6c319474b2b4bb5ce224d646", "sha256": "e8be8c118c561457464404e8b78efe0b69cda925c50dc22748dea7254f99475b" }, "downloads": -1, "filename": "webdriver_test_tools-0.10.1.tar.gz", "has_sig": false, "md5_digest": "83a0fd9d6c319474b2b4bb5ce224d646", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17873, "upload_time": "2018-03-26T14:52:31", "upload_time_iso_8601": "2018-03-26T14:52:31.935042Z", "url": "https://files.pythonhosted.org/packages/ca/70/5edb3658d437d3fc5d433500dd05a659150e435dd9c0798e619d8a4187e7/webdriver_test_tools-0.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.2": [ { "comment_text": "", "digests": { "md5": "8b18dada406369e655b85f68b9af81cd", "sha256": "35f50ea782d67eb6392a46b5f7c7677a0abb244ebc39ed4d2e7f87b284eb7e7a" }, "downloads": -1, "filename": "webdriver_test_tools-0.10.2.tar.gz", "has_sig": false, "md5_digest": "8b18dada406369e655b85f68b9af81cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17933, "upload_time": "2018-03-26T17:51:45", "upload_time_iso_8601": "2018-03-26T17:51:45.190526Z", "url": "https://files.pythonhosted.org/packages/7e/10/5c4945cd254decca04f95d310aef3ef44a2cc8acbb0d8d476930334546d1/webdriver_test_tools-0.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.10.3": [ { "comment_text": "", "digests": { "md5": "5434fff7460b202c0d7d14c0a03b04d5", "sha256": "8b4cd81de7c2bbe8cb4dcf9eeca2cbbf3092cacdae80a51586ffc00ba08d6109" }, "downloads": -1, "filename": "webdriver_test_tools-0.10.3.tar.gz", "has_sig": false, "md5_digest": "5434fff7460b202c0d7d14c0a03b04d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18123, "upload_time": "2018-03-27T14:04:48", "upload_time_iso_8601": "2018-03-27T14:04:48.908544Z", "url": "https://files.pythonhosted.org/packages/05/0d/327174a37ba985ffd8cd6482293883df5c30a2a4945830d18fc90d7a6cbc/webdriver_test_tools-0.10.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.0": [ { "comment_text": "", "digests": { "md5": "5df5644296187685c3f6cc8763d7abc7", "sha256": "940ec2c9a608b7d330baa17f7049a6203e21efc3b6952713db78bb87a877e19b" }, "downloads": -1, "filename": "webdriver_test_tools-0.11.0.tar.gz", "has_sig": false, "md5_digest": "5df5644296187685c3f6cc8763d7abc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18452, "upload_time": "2018-03-28T16:44:05", "upload_time_iso_8601": "2018-03-28T16:44:05.868365Z", "url": "https://files.pythonhosted.org/packages/1c/84/0371682d76da24fad42963345f363877ea61493abf47ff6411a57a09e691/webdriver_test_tools-0.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.11.1": [ { "comment_text": "", "digests": { "md5": "786d6c02322020d2d7ad569e6112486c", "sha256": "15848fe7fd050de464bc27119933c85124f3b741933f36f8531f5cc37c72613b" }, "downloads": -1, "filename": "webdriver_test_tools-0.11.1.tar.gz", "has_sig": false, "md5_digest": "786d6c02322020d2d7ad569e6112486c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18409, "upload_time": "2018-03-29T13:35:40", "upload_time_iso_8601": "2018-03-29T13:35:40.936698Z", "url": "https://files.pythonhosted.org/packages/6d/d5/9270cf0df888f8e0af5390a913e2dfb4a92e33b248c1e9ea521cd594fae8/webdriver_test_tools-0.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.12.0": [ { "comment_text": "", "digests": { "md5": "f314c9cb0b9f41b51385cb3e0b08ac2d", "sha256": "c0b2cdf5afe575e6ce56335ea07d74c38fe1b877c88d0463625481340bd09d5e" }, "downloads": -1, "filename": "webdriver_test_tools-0.12.0.tar.gz", "has_sig": false, "md5_digest": "f314c9cb0b9f41b51385cb3e0b08ac2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18735, "upload_time": "2018-03-30T16:42:19", "upload_time_iso_8601": "2018-03-30T16:42:19.504681Z", "url": "https://files.pythonhosted.org/packages/6c/52/53eb0473f9345a7ae323a202acf4d61e8829e967b375c91e437ad6d63195/webdriver_test_tools-0.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.13.0": [ { "comment_text": "", "digests": { "md5": "f52f6dda7c7bc6a054d6512482ba56f0", "sha256": "a236b68599ada24cbc0a14acc9103b2e32a0e2dc3d4dc33f47096ae9ca5aa506" }, "downloads": -1, "filename": "webdriver_test_tools-0.13.0.tar.gz", "has_sig": false, "md5_digest": "f52f6dda7c7bc6a054d6512482ba56f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18848, "upload_time": "2018-03-30T17:36:18", "upload_time_iso_8601": "2018-03-30T17:36:18.194664Z", "url": "https://files.pythonhosted.org/packages/10/56/04cbb0aefbf31b65a4d9a25d7f6eacbe9f62538df7fce5d433bfaeb626fa/webdriver_test_tools-0.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.0": [ { "comment_text": "", "digests": { "md5": "169f7ebca5540da95420d445da2a79c5", "sha256": "9f41e39b7c4375f2c74ae85aa4d45c3b56c88868c2c1c58d139576254873b577" }, "downloads": -1, "filename": "webdriver_test_tools-0.14.0.tar.gz", "has_sig": false, "md5_digest": "169f7ebca5540da95420d445da2a79c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19056, "upload_time": "2018-04-03T15:37:52", "upload_time_iso_8601": "2018-04-03T15:37:52.467768Z", "url": "https://files.pythonhosted.org/packages/7f/6f/88a773a56fd9eccaddc7414914eba7017025b03ef6cb7d39585fc5e7d88d/webdriver_test_tools-0.14.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.1": [ { "comment_text": "", "digests": { "md5": "f2972a4dd28747f9c66607782b805d66", "sha256": "0effe7ef1b284e6d25ba4291b44587707a2b3a8c186b89d5c2756bd867f9ba4e" }, "downloads": -1, "filename": "webdriver_test_tools-0.14.1.tar.gz", "has_sig": false, "md5_digest": "f2972a4dd28747f9c66607782b805d66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19121, "upload_time": "2018-04-03T19:49:52", "upload_time_iso_8601": "2018-04-03T19:49:52.362758Z", "url": "https://files.pythonhosted.org/packages/f7/ae/c12077b11f6761cfa94991a93aa7288020d3286d6f42f2fd28d6bb4a5bbd/webdriver_test_tools-0.14.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.2": [ { "comment_text": "", "digests": { "md5": "baa164e2af8a0c929f1b81503b81aa3b", "sha256": "c24252fab4d96792fdca6935b164b6387cb13b0da2d4122d0be7e3d19d90d92a" }, "downloads": -1, "filename": "webdriver_test_tools-0.14.2.tar.gz", "has_sig": false, "md5_digest": "baa164e2af8a0c929f1b81503b81aa3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20888, "upload_time": "2018-04-04T14:03:03", "upload_time_iso_8601": "2018-04-04T14:03:03.890056Z", "url": "https://files.pythonhosted.org/packages/e3/89/aebbab7fd4c1083e5d8897205fb7a230c1beb7ce629bc0476b0004e3e422/webdriver_test_tools-0.14.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.14.3": [ { "comment_text": "", "digests": { "md5": "e397e758c61ec4d55e3ef6bcba2e7da8", "sha256": "c44a6544bf77448abe0afb333e27ce7c452eb187c17aa1c01ae6abb4476e3916" }, "downloads": -1, "filename": "webdriver_test_tools-0.14.3.tar.gz", "has_sig": false, "md5_digest": "e397e758c61ec4d55e3ef6bcba2e7da8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21532, "upload_time": "2018-04-04T21:52:18", "upload_time_iso_8601": "2018-04-04T21:52:18.031481Z", "url": "https://files.pythonhosted.org/packages/7a/97/3769422471cb4667ae5f278d39191d58efea028c17cd3d7bf634b6b2188a/webdriver_test_tools-0.14.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.0": [ { "comment_text": "", "digests": { "md5": "af0de0fabfa3f83155a831db7fb02e20", "sha256": "8364019803829ae2d9126714cd8875ab7a496b925a570e02b87ebed729119ffc" }, "downloads": -1, "filename": "webdriver_test_tools-0.15.0.tar.gz", "has_sig": false, "md5_digest": "af0de0fabfa3f83155a831db7fb02e20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22680, "upload_time": "2018-04-06T15:16:25", "upload_time_iso_8601": "2018-04-06T15:16:25.111537Z", "url": "https://files.pythonhosted.org/packages/a9/90/154e2a0e05dcb3b6701b6d5e010e272dc908cd9d05947c6344e8c230714d/webdriver_test_tools-0.15.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.15.1": [ { "comment_text": "", "digests": { "md5": "f9b265b237321f0997fcd451cc49fc7a", "sha256": "1458eccd693524d9a17b9da27abeca44e228f0c6a356e94592cfaddba9da4d16" }, "downloads": -1, "filename": "webdriver_test_tools-0.15.1.tar.gz", "has_sig": false, "md5_digest": "f9b265b237321f0997fcd451cc49fc7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22657, "upload_time": "2018-04-06T16:05:40", "upload_time_iso_8601": "2018-04-06T16:05:40.523530Z", "url": "https://files.pythonhosted.org/packages/e7/61/19ff77e16fc7ff230734a5d6bfe5330b15a6f49b7454e3d3209ebd8c661d/webdriver_test_tools-0.15.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.16.0": [ { "comment_text": "", "digests": { "md5": "2bb0f63b53c1f4f5a9862c4bab839d24", "sha256": "5376a87c347888a59fbcdb5ca6c4efd15a167d5aae2a85310fe0b08f2bcaf6c9" }, "downloads": -1, "filename": "webdriver_test_tools-0.16.0.tar.gz", "has_sig": false, "md5_digest": "2bb0f63b53c1f4f5a9862c4bab839d24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25506, "upload_time": "2018-04-10T21:52:37", "upload_time_iso_8601": "2018-04-10T21:52:37.380303Z", "url": "https://files.pythonhosted.org/packages/a4/e8/e340bce1abe0bf4484e7a27857d1298ec556e1ecd14d252738805bf2e426/webdriver_test_tools-0.16.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.17.0": [ { "comment_text": "", "digests": { "md5": "1742deececa85c4c167a53247bebf7c8", "sha256": "144172f6c15d8d180224364267e5fbcabb5a92cbfcacd9cdf586992a52e4aa9b" }, "downloads": -1, "filename": "webdriver_test_tools-0.17.0.tar.gz", "has_sig": false, "md5_digest": "1742deececa85c4c167a53247bebf7c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25997, "upload_time": "2018-04-12T16:09:22", "upload_time_iso_8601": "2018-04-12T16:09:22.474587Z", "url": "https://files.pythonhosted.org/packages/44/7e/6260f2fbf14e50f25a57b76874b2af75dbc7e5adb933b579efafffc4cb6d/webdriver_test_tools-0.17.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.18.0": [ { "comment_text": "", "digests": { "md5": "ee109fa7e58491fb155898926bc633e4", "sha256": "b5966b7641cedffe6cf3746668b705d783935803d798018600ddc2a941ddaa8e" }, "downloads": -1, "filename": "webdriver_test_tools-0.18.0.tar.gz", "has_sig": false, "md5_digest": "ee109fa7e58491fb155898926bc633e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27199, "upload_time": "2018-04-13T14:17:19", "upload_time_iso_8601": "2018-04-13T14:17:19.029399Z", "url": "https://files.pythonhosted.org/packages/d0/42/42cb6f5bc0da29bc6b30cf9175bfc1eab9c3f31b37740e4def499840f8b6/webdriver_test_tools-0.18.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.0": [ { "comment_text": "", "digests": { "md5": "38172abe0966192046c89ca96c9988e2", "sha256": "e8e7d8e005f6d8d5f351ee9c3609097d772fefb92ab355b2fcbd4c9897d00abd" }, "downloads": -1, "filename": "webdriver_test_tools-0.19.0.tar.gz", "has_sig": false, "md5_digest": "38172abe0966192046c89ca96c9988e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27309, "upload_time": "2018-04-13T18:01:46", "upload_time_iso_8601": "2018-04-13T18:01:46.890092Z", "url": "https://files.pythonhosted.org/packages/b2/dc/b2cf521a6f20a97e290bc6be01dd213a8d5d78d4e407963b1b3d16460f93/webdriver_test_tools-0.19.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.19.1": [ { "comment_text": "", "digests": { "md5": "99d764baf0d6f82684d5575068f646f7", "sha256": "2d1cd3cc523e2f288092527ff3267bb0b0fcfa910626777a733bd5917de7e7eb" }, "downloads": -1, "filename": "webdriver_test_tools-0.19.1.tar.gz", "has_sig": false, "md5_digest": "99d764baf0d6f82684d5575068f646f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27314, "upload_time": "2018-04-13T18:08:41", "upload_time_iso_8601": "2018-04-13T18:08:41.717227Z", "url": "https://files.pythonhosted.org/packages/ec/2c/570a6f7b25d5208408b9b723add9776950ca29c6672d5c1ddd2a767090d5/webdriver_test_tools-0.19.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "b59cd285a2529c87fbbb14907d546572", "sha256": "30605fbefc3f3c9efa5ac4503da1a4d4da6ff903c3b3bd155b2ca6c4a4c31a26" }, "downloads": -1, "filename": "webdriver_test_tools-0.2.0.tar.gz", "has_sig": false, "md5_digest": "b59cd285a2529c87fbbb14907d546572", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8925, "upload_time": "2018-03-05T21:36:00", "upload_time_iso_8601": "2018-03-05T21:36:00.372704Z", "url": "https://files.pythonhosted.org/packages/ba/fb/5af195b9a421d40dd990abbaa0394e757c059778d86b63f12afc948b3452/webdriver_test_tools-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "f4dd915529a889924b2c86f452e3ce2c", "sha256": "0c391ceab9859db5ece46e9abd2a1bcb5786dc6cc2b2f21028bc228e881017ba" }, "downloads": -1, "filename": "webdriver_test_tools-0.2.1.tar.gz", "has_sig": false, "md5_digest": "f4dd915529a889924b2c86f452e3ce2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9001, "upload_time": "2018-03-06T00:07:57", "upload_time_iso_8601": "2018-03-06T00:07:57.711363Z", "url": "https://files.pythonhosted.org/packages/99/93/138544c863d0f20802d42eea11b5a5bea49b42a7e827715a826c8835d347/webdriver_test_tools-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "7fa3fd5e4d44aeeaaffce5aeb99dc89f", "sha256": "0fba445d7b5490db6ad49491972fff430daf084e6037995d8122f07e4202e535" }, "downloads": -1, "filename": "webdriver_test_tools-0.2.2.tar.gz", "has_sig": false, "md5_digest": "7fa3fd5e4d44aeeaaffce5aeb99dc89f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8998, "upload_time": "2018-03-06T00:34:54", "upload_time_iso_8601": "2018-03-06T00:34:54.951228Z", "url": "https://files.pythonhosted.org/packages/ca/b4/7f5d96e4941ff47c28ae8c04f711702f474b33d521323338bcbc9e1aabd7/webdriver_test_tools-0.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.20.0": [ { "comment_text": "", "digests": { "md5": "e9066d40377fee6b70ab61b980c8abd1", "sha256": "bfc79ba2905224304308dd4c5ac4694455541982a57b77b2d7182eb349999cd9" }, "downloads": -1, "filename": "webdriver_test_tools-0.20.0.tar.gz", "has_sig": false, "md5_digest": "e9066d40377fee6b70ab61b980c8abd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27353, "upload_time": "2018-04-17T14:36:29", "upload_time_iso_8601": "2018-04-17T14:36:29.964103Z", "url": "https://files.pythonhosted.org/packages/49/b5/479161f19ddcc47fa9585f8b20a6aff4c67df28d6a3115cb6de2d739f47f/webdriver_test_tools-0.20.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.21.0": [ { "comment_text": "", "digests": { "md5": "4731d97f0bb388a0221728af48725e18", "sha256": "355a850c3c3982f5b11ee88d2d56245862555c77470ca162ba97134f48896cd2" }, "downloads": -1, "filename": "webdriver_test_tools-0.21.0.tar.gz", "has_sig": false, "md5_digest": "4731d97f0bb388a0221728af48725e18", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27355, "upload_time": "2018-04-17T20:47:54", "upload_time_iso_8601": "2018-04-17T20:47:54.052860Z", "url": "https://files.pythonhosted.org/packages/ad/69/326e8237cc318ab07a8f6d3131adc5c50c89c714ccb50dbadfaffa840c8a/webdriver_test_tools-0.21.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.22.0": [ { "comment_text": "", "digests": { "md5": "c7866ea493615303a578cbaada1a9540", "sha256": "e4c3f2b54cafca205948357eadaea42d38085e571bb58c8a589af9f12c4091fd" }, "downloads": -1, "filename": "webdriver_test_tools-0.22.0.tar.gz", "has_sig": false, "md5_digest": "c7866ea493615303a578cbaada1a9540", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27593, "upload_time": "2018-04-18T19:11:24", "upload_time_iso_8601": "2018-04-18T19:11:24.073032Z", "url": "https://files.pythonhosted.org/packages/be/58/21da38a51787e13cd0f1887fdc800747d2f88dc5f7336566ae59dc541512/webdriver_test_tools-0.22.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.23.0": [ { "comment_text": "", "digests": { "md5": "9ff7d87ee0dfaccf2a57e5173ab088c3", "sha256": "4ae239e52447309bbd01703f3a839706a30fab6e3d9217d3225806e833776259" }, "downloads": -1, "filename": "webdriver_test_tools-0.23.0.tar.gz", "has_sig": false, "md5_digest": "9ff7d87ee0dfaccf2a57e5173ab088c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27843, "upload_time": "2018-04-20T21:39:03", "upload_time_iso_8601": "2018-04-20T21:39:03.266553Z", "url": "https://files.pythonhosted.org/packages/a7/d0/97664ada400ae15c22ac3a706b0600d53803409b4e565b60725f23f17e0d/webdriver_test_tools-0.23.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.24.0": [ { "comment_text": "", "digests": { "md5": "464208887a36bbd5f3dec44b197f9ca5", "sha256": "f3b63106384a23dfed467b31a4487c222ee13a3b260df6c6301859a89cc4f724" }, "downloads": -1, "filename": "webdriver_test_tools-0.24.0.tar.gz", "has_sig": false, "md5_digest": "464208887a36bbd5f3dec44b197f9ca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29325, "upload_time": "2018-04-23T21:16:32", "upload_time_iso_8601": "2018-04-23T21:16:32.694481Z", "url": "https://files.pythonhosted.org/packages/50/89/cc55def3e3186961883a877576578575365195f153287d34a2e33aedaed1/webdriver_test_tools-0.24.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.25.0": [ { "comment_text": "", "digests": { "md5": "d43164c548eff459bee986ecacf4b2a5", "sha256": "baa17533adf063fcf909116969d2fc4bb8dbfdcbe340bf0a10eb56af3988507d" }, "downloads": -1, "filename": "webdriver_test_tools-0.25.0.tar.gz", "has_sig": false, "md5_digest": "d43164c548eff459bee986ecacf4b2a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30725, "upload_time": "2018-04-26T19:55:46", "upload_time_iso_8601": "2018-04-26T19:55:46.338291Z", "url": "https://files.pythonhosted.org/packages/54/99/dfad8525fe8f1b0b47cfb250c7757f6c9f3599c1c568787a761f43220558/webdriver_test_tools-0.25.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.26.0": [ { "comment_text": "", "digests": { "md5": "f96095149c7e0c3b8e05fdb9dab4c869", "sha256": "9909ce65918d1b1d013042b2a25b3781ba21bae0aa591bbdbef35d78bc250867" }, "downloads": -1, "filename": "webdriver_test_tools-0.26.0.tar.gz", "has_sig": false, "md5_digest": "f96095149c7e0c3b8e05fdb9dab4c869", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32244, "upload_time": "2018-04-27T16:20:39", "upload_time_iso_8601": "2018-04-27T16:20:39.294874Z", "url": "https://files.pythonhosted.org/packages/4c/ef/b832bb7c7374729b01f148c478113d99b0ca9910ddb4e13e412c35c6572f/webdriver_test_tools-0.26.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.26.3": [ { "comment_text": "", "digests": { "md5": "2b79ab0a6d4660e32d90c91828c8ef67", "sha256": "a9e6fd63705b6ed108418afb74516e3ac81bd597d21fcb9abc403130b737cd90" }, "downloads": -1, "filename": "webdriver_test_tools-0.26.3.tar.gz", "has_sig": false, "md5_digest": "2b79ab0a6d4660e32d90c91828c8ef67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32225, "upload_time": "2018-04-27T16:37:49", "upload_time_iso_8601": "2018-04-27T16:37:49.101260Z", "url": "https://files.pythonhosted.org/packages/c8/14/8de69f2ec8f51a632d2db9a6d0b5ac815fc9ffaf89c966bc2339b4b515e7/webdriver_test_tools-0.26.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.27.0": [ { "comment_text": "", "digests": { "md5": "108e658d650c9d09d98c0fdd5b41e85f", "sha256": "964b7ab00368d92fa9e3b92fbcc9885bf6082eae5809e809fc21ec75ecfc913f" }, "downloads": -1, "filename": "webdriver_test_tools-0.27.0.tar.gz", "has_sig": false, "md5_digest": "108e658d650c9d09d98c0fdd5b41e85f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32891, "upload_time": "2018-04-30T21:17:55", "upload_time_iso_8601": "2018-04-30T21:17:55.490663Z", "url": "https://files.pythonhosted.org/packages/c1/8b/2448e1498ee512b00df20245b749b36135093aa24db07ba60816eff30c99/webdriver_test_tools-0.27.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.28.0": [ { "comment_text": "", "digests": { "md5": "9f0741af52f609935822700a3bd46f73", "sha256": "e1fe20bb26a3d70e353a42f615597cbc61ae20096f91ee770c2d3067c83d9692" }, "downloads": -1, "filename": "webdriver_test_tools-0.28.0.tar.gz", "has_sig": false, "md5_digest": "9f0741af52f609935822700a3bd46f73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34377, "upload_time": "2018-05-08T17:31:01", "upload_time_iso_8601": "2018-05-08T17:31:01.013840Z", "url": "https://files.pythonhosted.org/packages/fc/cd/f2037d9649391027e32e28b9893bd1ae4c9c0bff20dc6cffa94eb013d001/webdriver_test_tools-0.28.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.29.0": [ { "comment_text": "", "digests": { "md5": "db94250b3da8667a1538dba527c9f62f", "sha256": "965c9f3cf699a6787d7f5d805c361e743ceeb4a8dd6d261ae06a8fbf532f2185" }, "downloads": -1, "filename": "webdriver_test_tools-0.29.0.tar.gz", "has_sig": false, "md5_digest": "db94250b3da8667a1538dba527c9f62f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34704, "upload_time": "2018-05-08T20:45:08", "upload_time_iso_8601": "2018-05-08T20:45:08.161269Z", "url": "https://files.pythonhosted.org/packages/87/e4/e7216bf0c79b1d8512b172d02ce3ab0d27c3b54250bfd61f1a4703d075d2/webdriver_test_tools-0.29.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "ac289e94b379cd870d8434b6e93de85a", "sha256": "2d70a533f1aa9247ff1789c032dea260c64eee362dfea2c38196c427dd95abf6" }, "downloads": -1, "filename": "webdriver_test_tools-0.3.0.tar.gz", "has_sig": false, "md5_digest": "ac289e94b379cd870d8434b6e93de85a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13342, "upload_time": "2018-03-07T20:43:12", "upload_time_iso_8601": "2018-03-07T20:43:12.837542Z", "url": "https://files.pythonhosted.org/packages/72/ed/b95337bd1a8e3e8b25c4061bbf31c753016be4e9055cd9d36a64a6aebad3/webdriver_test_tools-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "97a31e6df50db8426864b983239f80a4", "sha256": "bda1c89bd3b089cece3cc46992788ca524fb485e7cb6aede51250eea66dce99b" }, "downloads": -1, "filename": "webdriver_test_tools-0.3.1.tar.gz", "has_sig": false, "md5_digest": "97a31e6df50db8426864b983239f80a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13605, "upload_time": "2018-03-07T22:19:58", "upload_time_iso_8601": "2018-03-07T22:19:58.098058Z", "url": "https://files.pythonhosted.org/packages/1f/68/54577eecb48718fc7cec02dbc5643581907a76e218269b14eb77c93466fd/webdriver_test_tools-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "b9d1ee35cbfc42f386a14de9584417c8", "sha256": "5c70b52f5905a760d9345124515a4441c7ea4e029b3af1f2960de7988e2512c6" }, "downloads": -1, "filename": "webdriver_test_tools-0.3.2.tar.gz", "has_sig": false, "md5_digest": "b9d1ee35cbfc42f386a14de9584417c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13473, "upload_time": "2018-03-08T15:49:08", "upload_time_iso_8601": "2018-03-08T15:49:08.054375Z", "url": "https://files.pythonhosted.org/packages/9b/b4/d714fb993a90910d60149ecef3cd5df16f236632fb86af33ed91b1b6ab94/webdriver_test_tools-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.30.0": [ { "comment_text": "", "digests": { "md5": "cc990230d5e28e87f3c5e15cbc9272a7", "sha256": "69e390573fcae328f274fe4fdb7503e1283852f9ee491e5f57a4f4cdc7f29de5" }, "downloads": -1, "filename": "webdriver_test_tools-0.30.0.tar.gz", "has_sig": false, "md5_digest": "cc990230d5e28e87f3c5e15cbc9272a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34898, "upload_time": "2018-05-09T20:54:52", "upload_time_iso_8601": "2018-05-09T20:54:52.006541Z", "url": "https://files.pythonhosted.org/packages/17/3b/ec8aef0c5d55ccdab29e67bb52a357a37b5e514c25fdf7a6da6169f64531/webdriver_test_tools-0.30.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "bff72728391c432ec8eafc7180439bd2", "sha256": "3d30a992fc068d619966c6365a920e88a93749e43f34b6fd17f402ca1c63a07c" }, "downloads": -1, "filename": "webdriver_test_tools-0.4.0.tar.gz", "has_sig": false, "md5_digest": "bff72728391c432ec8eafc7180439bd2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13620, "upload_time": "2018-03-08T19:20:40", "upload_time_iso_8601": "2018-03-08T19:20:40.835571Z", "url": "https://files.pythonhosted.org/packages/04/39/7bebe9a5d6fa103a69406f9c83113ad3243f2c26ef9313088b6a1accca1a/webdriver_test_tools-0.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.1": [ { "comment_text": "", "digests": { "md5": "1977db111e80ae435b6e6b15bcf5361b", "sha256": "7ef8135c9c1e5206588e410d77a53bf723f4a64c207da45ed95a13685e82cda7" }, "downloads": -1, "filename": "webdriver_test_tools-0.4.1.tar.gz", "has_sig": false, "md5_digest": "1977db111e80ae435b6e6b15bcf5361b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13307, "upload_time": "2018-03-08T19:38:18", "upload_time_iso_8601": "2018-03-08T19:38:18.008066Z", "url": "https://files.pythonhosted.org/packages/da/38/f9aedaf994bec85f340bffa002fa207da6758eee518fe16a023d32d5fbb0/webdriver_test_tools-0.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.2": [ { "comment_text": "", "digests": { "md5": "2a7d69c0596d7943471fc6ae308e8b56", "sha256": "79a07824cc3b258ddbcfe5d52e209e8ecaebb9e7e366e617046aee785a96ba4a" }, "downloads": -1, "filename": "webdriver_test_tools-0.4.2.tar.gz", "has_sig": false, "md5_digest": "2a7d69c0596d7943471fc6ae308e8b56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13490, "upload_time": "2018-03-09T20:08:30", "upload_time_iso_8601": "2018-03-09T20:08:30.517878Z", "url": "https://files.pythonhosted.org/packages/15/5f/4ebf4a446b3ffbc7d70d6880b5355a9e0fb5e900fa1eb5bd5ea9fc164af7/webdriver_test_tools-0.4.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.3": [ { "comment_text": "", "digests": { "md5": "0af20a1723184a8dbb279d66e56dca01", "sha256": "9af65c3c1c329142d7b7061f25298f56247e077ec07d1d9ee47259fc8b6a4411" }, "downloads": -1, "filename": "webdriver_test_tools-0.4.3.tar.gz", "has_sig": false, "md5_digest": "0af20a1723184a8dbb279d66e56dca01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13411, "upload_time": "2018-03-12T15:54:09", "upload_time_iso_8601": "2018-03-12T15:54:09.557073Z", "url": "https://files.pythonhosted.org/packages/a8/b0/fffada55acb22a7f168a6e5afe07317fa334413da9014767565bfa37a229/webdriver_test_tools-0.4.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.4": [ { "comment_text": "", "digests": { "md5": "0eac768b6056e36f1734e08cb124976f", "sha256": "0c918704053c08b1cacbd980fb718e5a4d48d74b11724848266f6575fde72648" }, "downloads": -1, "filename": "webdriver_test_tools-0.4.4.tar.gz", "has_sig": false, "md5_digest": "0eac768b6056e36f1734e08cb124976f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13588, "upload_time": "2018-03-12T17:08:45", "upload_time_iso_8601": "2018-03-12T17:08:45.064600Z", "url": "https://files.pythonhosted.org/packages/98/39/cda181cbfcb4149df25a619cae18183d6b4cb61c2cc8ed316965ed235f93/webdriver_test_tools-0.4.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.5": [ { "comment_text": "", "digests": { "md5": "cd6ba1053598e323d7cb1e6997fa6cb8", "sha256": "71164010f69afe255cccc469fbe2aa936d15225351ea42e764a3c9e4fe79a60c" }, "downloads": -1, "filename": "webdriver_test_tools-0.4.5.tar.gz", "has_sig": false, "md5_digest": "cd6ba1053598e323d7cb1e6997fa6cb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13932, "upload_time": "2018-03-12T21:29:00", "upload_time_iso_8601": "2018-03-12T21:29:00.801006Z", "url": "https://files.pythonhosted.org/packages/5d/87/0ae2578a9e246ecb87b3677f041fb062acde67a3b22c60fbc875bc0ef5f7/webdriver_test_tools-0.4.5.tar.gz", "yanked": false, "yanked_reason": null } ], "0.4.6": [ { "comment_text": "", "digests": { "md5": "1d016d95126c095d9436c6cda70a0675", "sha256": "a764b5a167f8b043660b05e2bd9d300f77ddc519b8edfbbf10b07cf6156ebf6f" }, "downloads": -1, "filename": "webdriver_test_tools-0.4.6.tar.gz", "has_sig": false, "md5_digest": "1d016d95126c095d9436c6cda70a0675", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14497, "upload_time": "2018-03-13T15:09:49", "upload_time_iso_8601": "2018-03-13T15:09:49.444071Z", "url": "https://files.pythonhosted.org/packages/fd/c6/69fc3771a4034678794d006e6f3abb59b82bb7ef6f45e18e8f814b1cf3e7/webdriver_test_tools-0.4.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "eaace0f30312ff0f045825f375aad838", "sha256": "4979c948f1d8ab28efee956a5c9fb5a40abd87214b69b60409f87c7c95ac237f" }, "downloads": -1, "filename": "webdriver_test_tools-0.5.0.tar.gz", "has_sig": false, "md5_digest": "eaace0f30312ff0f045825f375aad838", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14485, "upload_time": "2018-03-13T15:48:26", "upload_time_iso_8601": "2018-03-13T15:48:26.959638Z", "url": "https://files.pythonhosted.org/packages/6b/89/4601bf57f93760bc1825f1008a3097505b066117803e5cb878bc7391ba09/webdriver_test_tools-0.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "e1ae439a036afbcf56f5759f66fd1434", "sha256": "7972a4cc468f3c9c2b542e17a35816b7499fe5b8edd0031fe9091f4398a94150" }, "downloads": -1, "filename": "webdriver_test_tools-0.6.0.tar.gz", "has_sig": false, "md5_digest": "e1ae439a036afbcf56f5759f66fd1434", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14571, "upload_time": "2018-03-13T19:03:07", "upload_time_iso_8601": "2018-03-13T19:03:07.608480Z", "url": "https://files.pythonhosted.org/packages/de/77/dfaf8616d9f9467782cf639f3e81794e07d678eb63f2241f63e8ef1fc541/webdriver_test_tools-0.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "3d83894d9df77c1b0c33d50531ceb554", "sha256": "8e6800e30e628b6c02265688f7018424fb656334853ca1769b808f396d836977" }, "downloads": -1, "filename": "webdriver_test_tools-0.6.1.tar.gz", "has_sig": false, "md5_digest": "3d83894d9df77c1b0c33d50531ceb554", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14573, "upload_time": "2018-03-13T19:42:15", "upload_time_iso_8601": "2018-03-13T19:42:15.250221Z", "url": "https://files.pythonhosted.org/packages/22/84/69ea22ebbb9f69ca0fbbe246ec13d689935ab3aeac0f00972408fe8bf33e/webdriver_test_tools-0.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "be72ce689a4ae974d2221e7eaf643f0f", "sha256": "b2a7324a6b6125fb7ac33b38759a5c244111fef41726af5e7a11caac94040c91" }, "downloads": -1, "filename": "webdriver_test_tools-0.6.2.tar.gz", "has_sig": false, "md5_digest": "be72ce689a4ae974d2221e7eaf643f0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14667, "upload_time": "2018-03-15T20:34:38", "upload_time_iso_8601": "2018-03-15T20:34:38.413029Z", "url": "https://files.pythonhosted.org/packages/a0/41/057c8cfcef2f67d66b636a8291b18d667b9edfa7a8b74803270c44842204/webdriver_test_tools-0.6.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "aa29d845ddce12ebe5faa1ee6934b6da", "sha256": "a9bc903da3c778e50b6a1c1a0f22520c6d5ef593551539147fe75551ca25125f" }, "downloads": -1, "filename": "webdriver_test_tools-0.7.0.tar.gz", "has_sig": false, "md5_digest": "aa29d845ddce12ebe5faa1ee6934b6da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15413, "upload_time": "2018-03-19T14:48:25", "upload_time_iso_8601": "2018-03-19T14:48:25.602030Z", "url": "https://files.pythonhosted.org/packages/9e/b6/1fc053fcee6e71c9f0d99ed0e18a57f691c6a5c495b6d07cafa356b69f9c/webdriver_test_tools-0.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "d8a097f222b0eb5a6bf25e7dae55db38", "sha256": "22cd23c0fbdc2321d864c82e6180733c2d2eb458d679dda1a30931417eae95bb" }, "downloads": -1, "filename": "webdriver_test_tools-0.8.0.tar.gz", "has_sig": false, "md5_digest": "d8a097f222b0eb5a6bf25e7dae55db38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15981, "upload_time": "2018-03-20T18:45:57", "upload_time_iso_8601": "2018-03-20T18:45:57.688275Z", "url": "https://files.pythonhosted.org/packages/f0/25/988dc1b00b4ee6587883981978c4cd701896e4f533be42480cff5091a223/webdriver_test_tools-0.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "d2156f0909e46424a49921427232c04a", "sha256": "507da704e9506f9dd931b2aff096501ebaf72891e2d552e14d664d31eef2c918" }, "downloads": -1, "filename": "webdriver_test_tools-0.9.0.tar.gz", "has_sig": false, "md5_digest": "d2156f0909e46424a49921427232c04a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16595, "upload_time": "2018-03-22T20:04:18", "upload_time_iso_8601": "2018-03-22T20:04:18.504986Z", "url": "https://files.pythonhosted.org/packages/3f/fe/fd13c75f862be7ef5d057632f54201909152ed7898f0c31915689ee2bf64/webdriver_test_tools-0.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "c74640f72dc22dcc3d3b4bf65faf4641", "sha256": "7caa598e515ea6a619daaa32464f81c9e4e23b1357cc8f3764f8cfd961a981aa" }, "downloads": -1, "filename": "webdriver_test_tools-1.0.0.tar.gz", "has_sig": false, "md5_digest": "c74640f72dc22dcc3d3b4bf65faf4641", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35781, "upload_time": "2018-05-11T19:21:11", "upload_time_iso_8601": "2018-05-11T19:21:11.486279Z", "url": "https://files.pythonhosted.org/packages/13/93/3560185af97614dbcb99268ec139a4ad40679e65e901d4a43a8bc14a73bb/webdriver_test_tools-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0a0": [ { "comment_text": "", "digests": { "md5": "d823d41e03bda07a30ad1ec8f603d320", "sha256": "bac6f13e093fbd68fa3e19ccc7c3f4b578bcd1521862e51f6d247341a337884d" }, "downloads": -1, "filename": "webdriver_test_tools-1.0.0a0.tar.gz", "has_sig": false, "md5_digest": "d823d41e03bda07a30ad1ec8f603d320", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35776, "upload_time": "2018-05-11T18:41:27", "upload_time_iso_8601": "2018-05-11T18:41:27.152358Z", "url": "https://files.pythonhosted.org/packages/ce/b6/f473e5cbd4cfe0b0909c77fc955f93bf00bbbe9149d82efa49e578a7c665/webdriver_test_tools-1.0.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "2cc1ec1d60c570908131107734342ffc", "sha256": "b45469ba60874e19232e140f307fe8628de2086744e210c5789ba0e66444c237" }, "downloads": -1, "filename": "webdriver_test_tools-1.0.1.tar.gz", "has_sig": false, "md5_digest": "2cc1ec1d60c570908131107734342ffc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36942, "upload_time": "2018-05-15T17:28:32", "upload_time_iso_8601": "2018-05-15T17:28:32.495432Z", "url": "https://files.pythonhosted.org/packages/2a/01/4b04d62c2fca12f8123a39f33485ac25604108695ffbca4045224e1e7591/webdriver_test_tools-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "41806a8728466d55b83a8f5a6128df56", "sha256": "91a5e4fef2453661dff29908cf50951733bc3c0b309d3befdbc2d6139bf21e9d" }, "downloads": -1, "filename": "webdriver_test_tools-1.1.0.tar.gz", "has_sig": false, "md5_digest": "41806a8728466d55b83a8f5a6128df56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41214, "upload_time": "2018-05-23T20:08:55", "upload_time_iso_8601": "2018-05-23T20:08:55.994515Z", "url": "https://files.pythonhosted.org/packages/63/ab/b4e900fdaa947919fc5d73a7ff958697f35b927b07ab2f8a9bdcae9e052e/webdriver_test_tools-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "0ea04ae24cea8c0dfd8afe1e7d04dbf2", "sha256": "5b15cdb943fa7202a7a0eeac86bb94eaddaf41c663fb5d9c07941b8da812cf13" }, "downloads": -1, "filename": "webdriver_test_tools-1.2.0.tar.gz", "has_sig": false, "md5_digest": "0ea04ae24cea8c0dfd8afe1e7d04dbf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48302, "upload_time": "2018-06-04T21:44:48", "upload_time_iso_8601": "2018-06-04T21:44:48.283846Z", "url": "https://files.pythonhosted.org/packages/22/dd/19439b12aa892168b1602e3170bfad976dd3f220b2ec3007bf6ce25f322b/webdriver_test_tools-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "330814e6ac5388a86b1a5756178df7fb", "sha256": "b087149b14d6793a900064760a72600d4f5b3d9d165df32e7939d8ee73b9de38" }, "downloads": -1, "filename": "webdriver_test_tools-1.2.1.tar.gz", "has_sig": false, "md5_digest": "330814e6ac5388a86b1a5756178df7fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48434, "upload_time": "2018-06-05T14:33:33", "upload_time_iso_8601": "2018-06-05T14:33:33.876468Z", "url": "https://files.pythonhosted.org/packages/d7/69/4d4f6151c59084af0b07890b2b612b9c32e0ce90ae4e80dfe503bf3b2a9a/webdriver_test_tools-1.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "2fc3d34ee9aafeebf5dc8f90eb39258f", "sha256": "483114203b661e2f64798ba650c0e537f4d6959b961a2f1ad355e9b400aa6680" }, "downloads": -1, "filename": "webdriver_test_tools-1.3.0.tar.gz", "has_sig": false, "md5_digest": "2fc3d34ee9aafeebf5dc8f90eb39258f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48428, "upload_time": "2018-06-05T14:42:51", "upload_time_iso_8601": "2018-06-05T14:42:51.929841Z", "url": "https://files.pythonhosted.org/packages/31/c1/9909bb0e274790d472c61fe777b5c288fcef44f2bc6fee3666ed06763c38/webdriver_test_tools-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "8440b57de66533d2bc36eb7f617dc5e1", "sha256": "66331acb2b9d7b062484e7bf465023f7c48354f78068af437e7d5f54f4c4b999" }, "downloads": -1, "filename": "webdriver_test_tools-1.4.0.tar.gz", "has_sig": false, "md5_digest": "8440b57de66533d2bc36eb7f617dc5e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48449, "upload_time": "2018-06-06T15:29:49", "upload_time_iso_8601": "2018-06-06T15:29:49.196697Z", "url": "https://files.pythonhosted.org/packages/1d/fd/8693b06bfd750598701953b1493121c1de9c8e9ab969755565e9d5bf90e6/webdriver_test_tools-1.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.4.0a0": [ { "comment_text": "", "digests": { "md5": "339ab037d5e322ba7bf7e6e0286ea834", "sha256": "6520a4045d735c26a59a1b37f8135b55cfe1ae4d352a1ab169c155699e9bbf7d" }, "downloads": -1, "filename": "webdriver_test_tools-1.4.0a0.tar.gz", "has_sig": false, "md5_digest": "339ab037d5e322ba7bf7e6e0286ea834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48485, "upload_time": "2018-06-06T15:25:05", "upload_time_iso_8601": "2018-06-06T15:25:05.020836Z", "url": "https://files.pythonhosted.org/packages/f8/9f/480fa8aa15f2e5a1afc0deb290d5eb658946e8d52d749078bff63410a883/webdriver_test_tools-1.4.0a0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "6f050b39ad8a6af2f5e9dd63c590e6b7", "sha256": "c6e42884515745985d5c954b6dfc48c3e46e0b9b07e34b26e28b4df459f73a91" }, "downloads": -1, "filename": "webdriver_test_tools-1.5.0.tar.gz", "has_sig": false, "md5_digest": "6f050b39ad8a6af2f5e9dd63c590e6b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48961, "upload_time": "2018-06-12T17:12:31", "upload_time_iso_8601": "2018-06-12T17:12:31.493054Z", "url": "https://files.pythonhosted.org/packages/08/51/fbbddf0ff53923720cb3db8dc827bc49d3af534c54f5835e049a01ea56ce/webdriver_test_tools-1.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "24d011b295fc7046d92a17cf35606e0c", "sha256": "0d067d6fd15d7912fcd9cfadcb6be30cc45d2c049cef8075a551ccccabd7c67b" }, "downloads": -1, "filename": "webdriver_test_tools-1.6.0.tar.gz", "has_sig": false, "md5_digest": "24d011b295fc7046d92a17cf35606e0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49045, "upload_time": "2018-06-15T17:30:51", "upload_time_iso_8601": "2018-06-15T17:30:51.536591Z", "url": "https://files.pythonhosted.org/packages/62/55/f86b51f1d6e91b8ad3c0135205a48c1d04bf21b2fb513d0c6f1e2a08ed51/webdriver_test_tools-1.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "dba85d62ed70d3e21e3f223e75df622f", "sha256": "5c8875e860100bf12f659399c56d979badb66673a2005da4dcd825d4fa77fdd7" }, "downloads": -1, "filename": "webdriver_test_tools-1.6.1.tar.gz", "has_sig": false, "md5_digest": "dba85d62ed70d3e21e3f223e75df622f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49365, "upload_time": "2018-06-19T18:46:00", "upload_time_iso_8601": "2018-06-19T18:46:00.482298Z", "url": "https://files.pythonhosted.org/packages/c2/6c/9e50ecc75510511c03b0f6b2c3bf276d2bb637d50e99b7f8f94f42ab7e39/webdriver_test_tools-1.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "7f29bb8b6993060ef95afca7699a6550", "sha256": "d17560b1232a5e84b3beb50f29c307e2a6ee5f029888c2c486c82fc4f6db1e24" }, "downloads": -1, "filename": "webdriver_test_tools-1.7.0.tar.gz", "has_sig": false, "md5_digest": "7f29bb8b6993060ef95afca7699a6550", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49272, "upload_time": "2018-08-08T18:49:48", "upload_time_iso_8601": "2018-08-08T18:49:48.042743Z", "url": "https://files.pythonhosted.org/packages/2d/a6/15a818dbd8345d004772d2ce95132251098241c70de56d25447082c34a20/webdriver_test_tools-1.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "30e2527df0689a9b035970bb2541ab02", "sha256": "487dacfd740aa626245f4ea0d1fa3a03aca76dd1aed5b99cc0f98e81758b5c61" }, "downloads": -1, "filename": "webdriver_test_tools-1.7.1.tar.gz", "has_sig": false, "md5_digest": "30e2527df0689a9b035970bb2541ab02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49350, "upload_time": "2018-08-08T20:05:20", "upload_time_iso_8601": "2018-08-08T20:05:20.211736Z", "url": "https://files.pythonhosted.org/packages/44/ef/5017a6a03379ecd8adfb63a3d0d11cf55be21c9ac83d20c8c013687b75ef/webdriver_test_tools-1.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "f5abddb393c3cb800fd5c4d6606f2c6e", "sha256": "40cfee30222a4659b3566c5b028352ef1848c13adb5476182ad6503a90610625" }, "downloads": -1, "filename": "webdriver_test_tools-2.0.0.tar.gz", "has_sig": false, "md5_digest": "f5abddb393c3cb800fd5c4d6606f2c6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 55149, "upload_time": "2018-08-14T19:41:03", "upload_time_iso_8601": "2018-08-14T19:41:03.275377Z", "url": "https://files.pythonhosted.org/packages/c0/c5/1b071e92c633539d72aedaa1767483a3ce52fa52c59f698d17c6b6a91a83/webdriver_test_tools-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "e75de5ed07bcbd484850133834101271", "sha256": "f04038005140d45b958b4cddcc655bc13ffb1bc2237e6eda8db70b0e1fee80ac" }, "downloads": -1, "filename": "webdriver_test_tools-2.1.0.tar.gz", "has_sig": false, "md5_digest": "e75de5ed07bcbd484850133834101271", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 58722, "upload_time": "2018-09-12T16:09:03", "upload_time_iso_8601": "2018-09-12T16:09:03.407731Z", "url": "https://files.pythonhosted.org/packages/53/9e/b0bc8f0af04575c915b273d4c1029d7e408a092b2645b6162556830817d5/webdriver_test_tools-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "8e08bab81067d42751bb89c322ceb150", "sha256": "9e77cc12758f008fc84ef0ecd084d4770187795508cb132f89537b24d9d80811" }, "downloads": -1, "filename": "webdriver_test_tools-2.1.1.tar.gz", "has_sig": false, "md5_digest": "8e08bab81067d42751bb89c322ceb150", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59949, "upload_time": "2018-09-13T17:17:26", "upload_time_iso_8601": "2018-09-13T17:17:26.109753Z", "url": "https://files.pythonhosted.org/packages/25/51/29877299c4420c68cd551f52f3e600f69ec313ac946ef6d03a10f31e0ca1/webdriver_test_tools-2.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.10.0": [ { "comment_text": "", "digests": { "md5": "cc8d5c5655f427ecc0a5df362e3fcab5", "sha256": "04232e63d4ae3fa975e010322e27c2ae8860b9ce5a95eedd113682964573bade" }, "downloads": -1, "filename": "webdriver_test_tools-2.10.0.tar.gz", "has_sig": false, "md5_digest": "cc8d5c5655f427ecc0a5df362e3fcab5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84919, "upload_time": "2019-04-24T14:57:22", "upload_time_iso_8601": "2019-04-24T14:57:22.262084Z", "url": "https://files.pythonhosted.org/packages/87/37/8cb1c5874b78f55c90e60b8fe74b7505ba8df17c0912dbcdffd08c6d4239/webdriver_test_tools-2.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.10.1": [ { "comment_text": "", "digests": { "md5": "bfe052430f2a3dd77194076ef1f34af3", "sha256": "38a8755c945deb4b877547221963625fa8ede1ae0c4422e06d38aaf44b54cbaf" }, "downloads": -1, "filename": "webdriver_test_tools-2.10.1.tar.gz", "has_sig": false, "md5_digest": "bfe052430f2a3dd77194076ef1f34af3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84941, "upload_time": "2019-04-24T18:55:35", "upload_time_iso_8601": "2019-04-24T18:55:35.704122Z", "url": "https://files.pythonhosted.org/packages/67/2a/c87ed20d4181a9a25c14fad9aea26bc25761cc35ae595569ba277dc77b4d/webdriver_test_tools-2.10.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.10.2": [ { "comment_text": "", "digests": { "md5": "0b493dee1307d83edcfac22018b0a8f2", "sha256": "be786a54923a9ae3d2fb262df975d5a88d750272773c8dac5b8f412c9ffbb608" }, "downloads": -1, "filename": "webdriver_test_tools-2.10.2.tar.gz", "has_sig": false, "md5_digest": "0b493dee1307d83edcfac22018b0a8f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 85457, "upload_time": "2019-04-26T14:40:35", "upload_time_iso_8601": "2019-04-26T14:40:35.038784Z", "url": "https://files.pythonhosted.org/packages/25/34/b892a79289b2b7fb159307ca6cee97ed078b8311e7d2a6e471724c4e85d0/webdriver_test_tools-2.10.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.11.0": [ { "comment_text": "", "digests": { "md5": "0621c827619b6dc778cb2f1d4660fb22", "sha256": "2de38be86d16792b9e6e5b37332bd959b63e165d763a1493ca10b256b859d5c9" }, "downloads": -1, "filename": "webdriver_test_tools-2.11.0.tar.gz", "has_sig": false, "md5_digest": "0621c827619b6dc778cb2f1d4660fb22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86255, "upload_time": "2019-04-26T20:45:35", "upload_time_iso_8601": "2019-04-26T20:45:35.278958Z", "url": "https://files.pythonhosted.org/packages/7e/5b/5f98a5a045c968c505b264d5fae1a0b2649ffddac62c91f121dab29ac906/webdriver_test_tools-2.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.11.1": [ { "comment_text": "", "digests": { "md5": "053657d3bf08316fc758278a2326ca8d", "sha256": "5d4c740d935aba660e6eb367ff60ee65886c0fd80730caae9810d96b9f606746" }, "downloads": -1, "filename": "webdriver_test_tools-2.11.1.tar.gz", "has_sig": false, "md5_digest": "053657d3bf08316fc758278a2326ca8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86392, "upload_time": "2019-04-29T19:17:47", "upload_time_iso_8601": "2019-04-29T19:17:47.690447Z", "url": "https://files.pythonhosted.org/packages/ea/1f/c353c4a505fdd148d5ee3a438c999d6a0e7d29990591f087fe549c6748a3/webdriver_test_tools-2.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.11.2": [ { "comment_text": "", "digests": { "md5": "4fc9dcb9021cd207fb3ed7203cafb2b6", "sha256": "3a40a3dade1c335f8ffee0e8241901ebeef65596a02e54739e6f84571df3ba09" }, "downloads": -1, "filename": "webdriver_test_tools-2.11.2.tar.gz", "has_sig": false, "md5_digest": "4fc9dcb9021cd207fb3ed7203cafb2b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86527, "upload_time": "2019-04-30T17:26:45", "upload_time_iso_8601": "2019-04-30T17:26:45.666961Z", "url": "https://files.pythonhosted.org/packages/c4/bb/e43675a22fb067f74778c1a91a10b226d9a36224f301dc37917d2317b60c/webdriver_test_tools-2.11.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.12.0": [ { "comment_text": "", "digests": { "md5": "51dbf37271280c2372d1e6585146d0a3", "sha256": "b539b4863d4a3e158415842dd16ebfd9d53967bc0b110ac1a1d3c8ce4c6aead9" }, "downloads": -1, "filename": "webdriver_test_tools-2.12.0.tar.gz", "has_sig": false, "md5_digest": "51dbf37271280c2372d1e6585146d0a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86740, "upload_time": "2019-04-30T18:57:19", "upload_time_iso_8601": "2019-04-30T18:57:19.238778Z", "url": "https://files.pythonhosted.org/packages/90/39/bb5dff2511560f29694b9dd1d0f669a06a7b94938d47a06539c67103cc56/webdriver_test_tools-2.12.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.12.1": [ { "comment_text": "", "digests": { "md5": "020268bb42e12678bdc07565a3bcb1b0", "sha256": "fe26e43e134679cdac03c4439f744bd8d4118e971d2fdbb43d0ee6d28e14a7a3" }, "downloads": -1, "filename": "webdriver_test_tools-2.12.1.tar.gz", "has_sig": false, "md5_digest": "020268bb42e12678bdc07565a3bcb1b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86733, "upload_time": "2019-05-02T14:53:25", "upload_time_iso_8601": "2019-05-02T14:53:25.395439Z", "url": "https://files.pythonhosted.org/packages/b1/38/077862dae4c879a2bba57799b41228b694160f2769e440a7b83ba48887d4/webdriver_test_tools-2.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.13.0": [ { "comment_text": "", "digests": { "md5": "b473e8379c7361459aec8b581e80d43a", "sha256": "98ddd06e185d22496a8265f0fe9c32ef6f9060403fe61241d3cf2979fc0cc25a" }, "downloads": -1, "filename": "webdriver_test_tools-2.13.0.tar.gz", "has_sig": false, "md5_digest": "b473e8379c7361459aec8b581e80d43a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86339, "upload_time": "2019-05-02T19:36:59", "upload_time_iso_8601": "2019-05-02T19:36:59.046282Z", "url": "https://files.pythonhosted.org/packages/78/e9/c390a4b9b6267bb6eddf75e1234ecc7acd5e68deb7b45549c1fc32033c95/webdriver_test_tools-2.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.13.1": [ { "comment_text": "", "digests": { "md5": "6cfd2607fab027de4882409339eea254", "sha256": "01f75c2c1c7f1ba6968dcc7635260e48f99686f2de602156dc93a67a57c5e81d" }, "downloads": -1, "filename": "webdriver_test_tools-2.13.1.tar.gz", "has_sig": false, "md5_digest": "6cfd2607fab027de4882409339eea254", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 87792, "upload_time": "2019-05-06T17:10:33", "upload_time_iso_8601": "2019-05-06T17:10:33.657301Z", "url": "https://files.pythonhosted.org/packages/a7/c9/91e48898a548667c61a145fc25f47170527639508a912ab34a45eab8dda5/webdriver_test_tools-2.13.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "03055f7b7545c374f49bf1ff013e6355", "sha256": "778681b08bdfcd5517fad5535d4b85656d352dfa9db24a3c0b15e21a946502c9" }, "downloads": -1, "filename": "webdriver_test_tools-2.2.0.tar.gz", "has_sig": false, "md5_digest": "03055f7b7545c374f49bf1ff013e6355", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 60901, "upload_time": "2019-02-20T17:32:18", "upload_time_iso_8601": "2019-02-20T17:32:18.384379Z", "url": "https://files.pythonhosted.org/packages/30/a9/271f8a302963fac4af8ea79ad9b6401522dacedb47f073a3d3b9a28760f5/webdriver_test_tools-2.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "5cba6b9b4a4b1a4a10114adcdd137794", "sha256": "3628d74c4394c01db5de611b81b742b435816f2bd4eeac82eca71082bc5031c9" }, "downloads": -1, "filename": "webdriver_test_tools-2.3.0.tar.gz", "has_sig": false, "md5_digest": "5cba6b9b4a4b1a4a10114adcdd137794", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61468, "upload_time": "2019-03-07T15:36:04", "upload_time_iso_8601": "2019-03-07T15:36:04.650671Z", "url": "https://files.pythonhosted.org/packages/06/05/c22208803f16b353874200bbfa56df7d105ff2cd60a8ea9e1b870b01c03a/webdriver_test_tools-2.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "b23e36cd370454a0ced5c0f8b1c5a861", "sha256": "4b8b3ef547711bec01083cec0a140e90d49d1fc607ce8fd15c54fac70c5bcd16" }, "downloads": -1, "filename": "webdriver_test_tools-2.4.0.tar.gz", "has_sig": false, "md5_digest": "b23e36cd370454a0ced5c0f8b1c5a861", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64993, "upload_time": "2019-03-19T20:14:17", "upload_time_iso_8601": "2019-03-19T20:14:17.308244Z", "url": "https://files.pythonhosted.org/packages/fe/2a/0728c0c60910804cb8f99b520654c1158475c09cb82f34a2eb94d671eb82/webdriver_test_tools-2.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "6f39a1c675a03399e207241dd7fb71f4", "sha256": "5d4e684b676ba55fe70b848032d87ccaae6f85d93faa9818cd189c495b7f58c2" }, "downloads": -1, "filename": "webdriver_test_tools-2.5.0.tar.gz", "has_sig": false, "md5_digest": "6f39a1c675a03399e207241dd7fb71f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65011, "upload_time": "2019-03-20T19:52:22", "upload_time_iso_8601": "2019-03-20T19:52:22.001132Z", "url": "https://files.pythonhosted.org/packages/0d/71/ab8b3e16af5ab396b437e23e37dc90bc83c3310b1177af40fc14e4501667/webdriver_test_tools-2.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "e319f1d7898dbde99ae0aff0e85dbdac", "sha256": "ccb0064d041a438bd9dfd242db9484753f0feb52781914b222d97eaab2502aa5" }, "downloads": -1, "filename": "webdriver_test_tools-2.5.1.tar.gz", "has_sig": false, "md5_digest": "e319f1d7898dbde99ae0aff0e85dbdac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65414, "upload_time": "2019-03-25T16:30:03", "upload_time_iso_8601": "2019-03-25T16:30:03.004067Z", "url": "https://files.pythonhosted.org/packages/d8/0f/ed8049180ec14be8a4f09a17bb67904da32e66d851a7dae812091e7c5e65/webdriver_test_tools-2.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "b71592b3a8f646c96bbf997c2124ae74", "sha256": "464e65b958017a2a5eb20fb9878a4ef76165abfd744867badb386f08980ca9d1" }, "downloads": -1, "filename": "webdriver_test_tools-2.6.0.tar.gz", "has_sig": false, "md5_digest": "b71592b3a8f646c96bbf997c2124ae74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 68905, "upload_time": "2019-03-27T19:22:51", "upload_time_iso_8601": "2019-03-27T19:22:51.313239Z", "url": "https://files.pythonhosted.org/packages/dc/57/1d6d30b70648dfa166464a6e0917d63158ec2800a22e42259bd8e448ae6b/webdriver_test_tools-2.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "3a99e922f30d0d0d4af3e80f82758d34", "sha256": "bd1e90c59498b303a8fad68cb4515fbad2da5bf5fb37a73f099771c5c5820fa7" }, "downloads": -1, "filename": "webdriver_test_tools-2.7.0.tar.gz", "has_sig": false, "md5_digest": "3a99e922f30d0d0d4af3e80f82758d34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75056, "upload_time": "2019-04-10T18:13:38", "upload_time_iso_8601": "2019-04-10T18:13:38.902832Z", "url": "https://files.pythonhosted.org/packages/c0/0f/0b77b119153bd95ebac8b6ec6922e0e3d9c9f9ae49a6282f2eff71647c36/webdriver_test_tools-2.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "f21be7506661d5ec7531eaadc732a12d", "sha256": "537e88cb86667f9f24affc7625f29190c262b8a882bc2e274e8f26706ed13a1a" }, "downloads": -1, "filename": "webdriver_test_tools-2.8.0.tar.gz", "has_sig": false, "md5_digest": "f21be7506661d5ec7531eaadc732a12d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75369, "upload_time": "2019-04-11T14:47:35", "upload_time_iso_8601": "2019-04-11T14:47:35.662776Z", "url": "https://files.pythonhosted.org/packages/67/98/3777525b93ce064a74d5619cd75f54de3d7cde8ab422d400846cad135ef3/webdriver_test_tools-2.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.8.1": [ { "comment_text": "", "digests": { "md5": "adca3299d5dd54e2880513781642d650", "sha256": "e0a3c8974e3c98014d660d053b922fb1b2d47f4e4d49515e1175954929012ddb" }, "downloads": -1, "filename": "webdriver_test_tools-2.8.1.tar.gz", "has_sig": false, "md5_digest": "adca3299d5dd54e2880513781642d650", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75888, "upload_time": "2019-04-11T20:06:38", "upload_time_iso_8601": "2019-04-11T20:06:38.262288Z", "url": "https://files.pythonhosted.org/packages/80/a0/2164b247032c1a91fd224a261fe89aa525a13fd0442df3e93ef698382242/webdriver_test_tools-2.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "76601cd3e1eb1eab80248871b81e0dbb", "sha256": "5556f4ad6f3356cdace0b31e70b4e09eb08609d6c37e19bbcee0c73230369200" }, "downloads": -1, "filename": "webdriver_test_tools-2.9.0.tar.gz", "has_sig": false, "md5_digest": "76601cd3e1eb1eab80248871b81e0dbb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84149, "upload_time": "2019-04-22T18:20:42", "upload_time_iso_8601": "2019-04-22T18:20:42.373611Z", "url": "https://files.pythonhosted.org/packages/d3/41/fb9ab6b222db1be6081c821953d49477b3a075aa98c90ec53f38e786e146/webdriver_test_tools-2.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.9.1": [ { "comment_text": "", "digests": { "md5": "0038e2e64036a174d05fc13609c3efc0", "sha256": "4b4f938f52ab046626672ef1f2c3c0c5ef8c7d923b45e1652aaf59f801fe2680" }, "downloads": -1, "filename": "webdriver_test_tools-2.9.1.tar.gz", "has_sig": false, "md5_digest": "0038e2e64036a174d05fc13609c3efc0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84177, "upload_time": "2019-04-23T18:18:00", "upload_time_iso_8601": "2019-04-23T18:18:00.523548Z", "url": "https://files.pythonhosted.org/packages/57/0d/c74c45baed9f4c47e9c02ad2ab2239cedb875ec329eff67d249a08968d25/webdriver_test_tools-2.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.9.2": [ { "comment_text": "", "digests": { "md5": "0863ce5a0ca1cd0e0a71b0200dc21705", "sha256": "a006cbe3cf5e4f9cb718c5e80a9a11233086e0bba478efc6f41065888eca3531" }, "downloads": -1, "filename": "webdriver_test_tools-2.9.2.tar.gz", "has_sig": false, "md5_digest": "0863ce5a0ca1cd0e0a71b0200dc21705", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 84173, "upload_time": "2019-04-23T19:49:57", "upload_time_iso_8601": "2019-04-23T19:49:57.502386Z", "url": "https://files.pythonhosted.org/packages/41/fa/00921e3308d3fc3bdcdb3e96b5d3a59d4e06b6870cb7672204ce134ba198/webdriver_test_tools-2.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "840a6f84a5b6cef34080c9fd4f4fdf70", "sha256": "375305da08eca1eeb02605b39d3b9461e45c8bea807171f51e86492597956cc5" }, "downloads": -1, "filename": "webdriver_test_tools-3.0.0.tar.gz", "has_sig": false, "md5_digest": "840a6f84a5b6cef34080c9fd4f4fdf70", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83254, "upload_time": "2019-05-08T14:11:37", "upload_time_iso_8601": "2019-05-08T14:11:37.950998Z", "url": "https://files.pythonhosted.org/packages/2e/73/afde7a722daf8b7105666be3e7ed072a684fba04f99da126955b187dbb2f/webdriver_test_tools-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "8c9c4a0fb3766e8f0e25867d5bd08479", "sha256": "3af5c2fcb37c8d4dc350feafad1a4adcbee388b028ba3228c0d72d72e2c987d6" }, "downloads": -1, "filename": "webdriver_test_tools-3.0.1.tar.gz", "has_sig": false, "md5_digest": "8c9c4a0fb3766e8f0e25867d5bd08479", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77553, "upload_time": "2019-10-11T21:40:12", "upload_time_iso_8601": "2019-10-11T21:40:12.631770Z", "url": "https://files.pythonhosted.org/packages/ad/e2/95df0ebda01853ddef0df9abb2f522626fe3283db21ff467048f05623488/webdriver_test_tools-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "e64824a7481d374f82a264b0f652ba52", "sha256": "a2938473b37deaa80564cad2bb81cd62518c0be5acc6c50149f14ddbdad881ab" }, "downloads": -1, "filename": "webdriver_test_tools-3.1.0.tar.gz", "has_sig": false, "md5_digest": "e64824a7481d374f82a264b0f652ba52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77540, "upload_time": "2019-10-16T19:54:09", "upload_time_iso_8601": "2019-10-16T19:54:09.220376Z", "url": "https://files.pythonhosted.org/packages/31/04/f92e109369c38956e593498eadaf11d4d006d157e1ceec99d14d2151d7e4/webdriver_test_tools-3.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "4a9a726966af5e3ec8dd7915f5b063f4", "sha256": "1f6d7cfdd516d4c5d3ef5823aa3b919b6016e321ba2446be440a43770a234c6d" }, "downloads": -1, "filename": "webdriver_test_tools-3.2.0.tar.gz", "has_sig": false, "md5_digest": "4a9a726966af5e3ec8dd7915f5b063f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77933, "upload_time": "2019-10-28T18:27:57", "upload_time_iso_8601": "2019-10-28T18:27:57.247717Z", "url": "https://files.pythonhosted.org/packages/dc/a7/4771d0309418f5bf3390d5e27e971f22353f5cbe72fb43103912b0903dea/webdriver_test_tools-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4a9a726966af5e3ec8dd7915f5b063f4", "sha256": "1f6d7cfdd516d4c5d3ef5823aa3b919b6016e321ba2446be440a43770a234c6d" }, "downloads": -1, "filename": "webdriver_test_tools-3.2.0.tar.gz", "has_sig": false, "md5_digest": "4a9a726966af5e3ec8dd7915f5b063f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 77933, "upload_time": "2019-10-28T18:27:57", "upload_time_iso_8601": "2019-10-28T18:27:57.247717Z", "url": "https://files.pythonhosted.org/packages/dc/a7/4771d0309418f5bf3390d5e27e971f22353f5cbe72fb43103912b0903dea/webdriver_test_tools-3.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }