{ "info": { "author": "Anatoly Bubenkov, Paylogic International and others", "author_email": "bubenkoff@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "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 :: Testing", "Topic :: Utilities" ], "description": "Splinter plugin for the pytest runner\n======================================\n\n.. image:: https://badges.gitter.im/pytest-dev/pytest-splinter.svg\n :alt: Join the chat at https://gitter.im/pytest-dev/pytest-splinter\n :target: https://gitter.im/pytest-dev/pytest-splinter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n\n.. image:: https://img.shields.io/pypi/v/pytest-splinter.svg\n :target: https://pypi.python.org/pypi/pytest-splinter\n.. image:: https://img.shields.io/pypi/pyversions/pytest-splinter.svg\n :target: https://pypi.python.org/pypi/pytest-splinter\n.. image:: https://img.shields.io/coveralls/pytest-dev/pytest-splinter/master.svg\n :target: https://coveralls.io/r/pytest-dev/pytest-splinter\n.. image:: https://travis-ci.org/pytest-dev/pytest-splinter.svg?branch=master\n :target: https://travis-ci.org/pytest-dev/pytest-splinter\n.. image:: https://readthedocs.org/projects/pytest-splinter/badge/?version=latest\n :target: https://readthedocs.org/projects/pytest-splinter/?badge=latest\n :alt: Documentation Status\n\n\nInstall pytest-splinter\n-----------------------\n\n::\n\n pip install pytest-splinter\n\n\nFeatures\n--------\n\nThe plugin provides a set of fixtures to use `splinter `_\nfor browser testing with `pytest `_\n\n\nFixtures\n--------\n\n* browser\n Get the splinter's Browser. Fixture is underneath session scoped, so browser process is started\n once per test session, but the state of the browser will be clean (current page is ``blank``, cookies clean).\n\n* session_browser\n The same as ``browser`` except the lifetime. This fixture is session-scoped so will only be finalized at the\n end of the whole test session. Useful if you want to speedup your test suite paying with reduced test isolation.\n\n* browser_instance_getter\n Function to create an instance of the browser. This fixture is required only if you need to have\n multiple instances of the Browser in a single test at the same time. Example of usage:\n\n.. code-block:: python\n\n @pytest.fixture\n def admin_browser(request, browser_instance_getter):\n \"\"\"Admin browser fixture.\"\"\"\n # browser_instance_getter function receives parent fixture -- our admin_browser\n return browser_instance_getter(request, admin_browser)\n\n def test_2_browsers(browser, admin_browser):\n \"\"\"Test using 2 browsers at the same time.\"\"\"\n browser.visit('http://google.com')\n admin_browser.visit('http://admin.example.com')\n\n* splinter_selenium_implicit_wait\n Implicit wait timeout to be passed to Selenium webdriver.\n Fixture gets the value from the command-line option splinter-implicit-wait (see below)\n\n* splinter_wait_time\n Explicit wait timeout (for waiting for expicit condition via `wait_for_condition`).\n Fixture gets the value from the command-line option splinter-wait-time (see below)\n\n* splinter_selenium_speed\n Speed for Selenium, if not 0 then it will sleep between each selenium command.\n Useful for debugging/demonstration.\n Fixture gets the value from the command-line option splinter-speed (see below)\n\n* splinter_selenium_socket_timeout\n Socket timeout for communication between the webdriver and the browser.\n Fixture gets the value from the command-line option splinter-socket-timeout (see below)\n\n* splinter_webdriver\n Splinter's webdriver name to use. Fixture gets the value from the command-line option\n splinter-webdriver (see below). To make pytest-splinter always use certain webdriver, override a fixture\n in your `conftest.py` file:\n\n.. code-block:: python\n\n import pytest\n\n @pytest.fixture(scope='session')\n def splinter_webdriver():\n \"\"\"Override splinter webdriver name.\"\"\"\n return 'chrome'\n\n* splinter_remote_url\n Splinter's webdriver remote url to use (optional). Fixture gets the value from the command-line option\n splinter-remote-url (see below). Will be used only if selected webdriver name is 'remote'.\n\n* splinter_session_scoped_browser\n pytest-splinter should use single browser instance per test session.\n Fixture gets the value from the command-line option splinter-session-scoped-browser (see below)\n\n* splinter_file_download_dir\n Directory, to which browser will automatically download the files it\n will experience during browsing. For example when you click on some download link.\n By default it's a temporary directory. Automatic downloading of files is only supported for firefox driver\n at the moment.\n\n* splinter_download_file_types\n Comma-separated list of content types to automatically download.\n By default it's the all known system mime types (via mimetypes standard library).\n\n* splinter_browser_load_condition\n Browser load condition, python function which should return True.\n If function returns False, it will be run several times, until timeout below reached.\n\n* splinter_browser_load_timeout\n Browser load condition timeout in seconds, after this timeout the exception\n WaitUntilTimeout will be raised.\n\n* splinter_wait_time\n Browser explicit wait timeout in seconds, after this timeout the exception\n WaitUntilTimeout will be raised.\n\n* splinter_firefox_profile_preferences\n Firefox profile preferences, a dictionary which is passed to selenium\n webdriver's profile_preferences\n\n* splinter_firefox_profile_directory\n Firefox profile directory to use as template for firefox profile created by selenium.\n By default, it's an empty directly inside pytest_splinter/profiles/firefox\n\n* splinter_driver_kwargs\n Webdriver keyword arguments, a dictionary which is passed to selenium\n webdriver's constructor (after applying firefox preferences)\n\n* splinter_window_size\n Size of the browser window on browser initialization. Tuple in form (, ). Default is (1366, 768)\n\n* splinter_screenshot_dir\n pytest-splinter browser screenshot directory.\n This fixture gets the value from the command-line option\n `splinter-screenshot-dir` (see below).\n\n* splinter_make_screenshot_on_failure\n Should pytest-splinter take browser screenshots on test failure?\n This fixture gets the value from the command-line option\n `splinter-make-screenshot-on-failure` (see below).\n\n* splinter_screenshot_encoding\n Encoding of the `html` `screenshot` on test failure. UTF-8 by default.\n\n* splinter_screenshot_getter_html\n Function to get browser html screenshot. By default, it saves `browser.html` with given path and\n `splinter_screenshot_encoding` encoding.\n\n* splinter_screenshot_getter_png\n Function to get browser image (png) screenshot. By default, it calls `browser.save_sceenshot`\n with given path.\n\n* splinter_driver_executable\n Filesystem path of the webdriver executable.\n This fixture gets the value from the command-line option\n `splinter-webdriver-executable` (see below).\n\n* splinter_browser_class\n Class to use for browser instance.\n Defaults to `pytest_splinter.plugin.Browser`.\n\n* splinter_clean_cookies_urls\n List of additional urls to clean cookies on. By default, during the preparation of the browser for the test,\n pytest-splinter only cleans cookies for the last visited url from previous test, as it's not possible to clean\n all cookies from all domains at once via webdriver protocol, by design. This limitation can be worked around if\n you know the list of urls, the domains for which you need to clean cookies (for example https://facebook.com).\n If so, you can override this fixture and put those urls there, and pytest-splinter will visit each of them and will\n clean the cookies for each domain.\n\n* splinter_headless\n Run Chrome in headless mode. As the writing of this (2017-07), available only in unreleased Splinter master version.\n Defaults to false.\n\nCommand-line options\n--------------------\n\n* `--splinter-implicit-wait`\n Selenium webdriver implicit wait. Seconds (default: 5).\n\n* `--splinter-speed`\n selenium webdriver speed (from command to command). Seconds (default: 0).\n\n* `--splinter-socket-timeout`\n Selenium webdriver socket timeout for for communication between the webdriver and the browser.\n Seconds (default: 120).\n\n* `--splinter-webdriver`\n Webdriver name to use. (default: firefox). Options:\n\n * firefox\n * remote\n * chrome\n\n For more details refer to the documentation for splinter and selenium.\n\n* `--splinter-remote-url`\n Webdriver remote url to use. (default: None). Will be used only if selected webdriver name is 'remote'.\n\n For more details refer to the documentation for splinter and selenium.\n\n* `--splinter-session-scoped-browser`\n pytest-splinter should use a single browser instance per test session.\n Choices are 'true' or 'false' (default: 'true').\n\n* `--splinter-make-screenshot-on-failure`\n pytest-splinter should take browser screenshots on test failure.\n Choices are 'true' or 'false' (default: 'true').\n\n* `--splinter-screenshot-dir`\n pytest-splinter browser screenshot directory. Defaults to the current\n directory.\n\n* `--splinter-webdriver-executable`\n Filesystem path of the webdriver executable. Used by chrome driver.\n Defaults to the None in which case the shell PATH variable setting determines the location of the executable.\n\n\nBrowser fixture\n---------------\n\nAs mentioned above, browser is a fixture made by creating splinter's Browser object, but with some overrides.\n\n* visit\n Added possibility to wait for condition on each browser visit by having a fixture.\n\n* wait_for_condition\n Method copying selenium's wait_for_condition, with difference that condition is in python,\n so there you can do whatever you want, and not only execute javascript via browser.evaluate_script.\n\n\nSeveral browsers for your test\n------------------------------\n\nYou can have several browsers in one test.\n\n.. code-block:: python\n\n import pytest\n\n @pytest.fixture\n def admin_browser(browser_instance_getter):\n return browser_instance_getter(admin_browser)\n\n def test_with_several_browsers(browser, admin_browser):\n browser.visit('http://example.com')\n admin_browser.visit('about:blank')\n assert browser.url == 'http://example.com'\n\n\nAutomatic screenshots on test failure\n-------------------------------------\n\nWhen your functional test fails, it's important to know the reason.\nThis becomes hard when tests are being run on the continuos integration server,\nwhere you cannot debug (using --pdb).\nTo simplify things, a special behaviour of the browser fixture is available,\nwhich takes a screenshot on test failure and puts it in a folder with the a\nnaming convention compatible to the\n`jenkins plugin `_.\nThe html content of the browser page is also stored, this can be useful for debugging the html source.\n\nCreating screenshots is fully compatible with `pytest-xdist plugin\n`_ and will transfer the screenshots\nfrom the slave nodes through the communication channel automatically.\n\nIf a test (using the browser fixture) fails, you should get a screenshot files\nin the following path:\n\n::\n\n /my.dotted.name.test.package/test_name-browser.png\n /my.dotted.name.test.package/test_name-browser.html\n\nThe `splinter-screenshot-dir` for storing the screenshot is generated by a\nfixture and can be provided through a command line argument, as described above\nat the configuration options section.\n\nTaking screenshots on test failure is enabled by default. It can be controlled\nthrough the `splinter_make_screenshot_on_failure` fixture, where return `False`\nskips it. You can also disable it via a command line argument:\n\n::\n\n pytest tests/functional --splinter-make-screenshot-on-failure=false\n\nIn case taking a screenshot fails, a pytest warning will be issued, which\ncan be viewed using the `-rw` argument for `pytest`.\n\n\nPython3 support\n---------------\n\nPython3 is supported, check if you have recent version of splinter as it was added recently.\n\n\nExample\n-------\n\ntest_your_test.py:\n\n.. code-block:: python\n\n def test_some_browser_stuff(browser):\n \"\"\"Test using real browser.\"\"\"\n url = \"http://www.google.com\"\n browser.visit(url)\n browser.fill('q', 'splinter - python acceptance testing for web applications')\n # Find and click the 'search' button\n button = browser.find_by_name('btnK')\n # Interact with elements\n button.click()\n assert browser.is_text_present('splinter.cobrateam.info'), 'splinter.cobrateam.info wasn't found... We need to'\n ' improve our SEO techniques'\n\n\nContact\n-------\n\nIf you have questions, bug reports, suggestions, etc. please create an issue on\nthe `GitHub project page `_.\n\n\nLicense\n-------\n\nThis software is licensed under the `MIT license `_\n\nSee `License file `_\n\n\n\u00a9 2014 Anatoly Bubenkov, Paylogic International and others.\n\nAuthors\n=======\n\n`Anatoly Bubenkov `_\n original idea and implementation, new features and improvements\n\nThese people have contributed to `pytest-splinter`, in alphabetical order:\n\n* `Alessio Bogon `_\n* `Andreas Pelme `_\n* `Andrey Makhnach `_\n* `Aymeric Augustin `_\n* `Daniel Hahler `_\n* `Hugo `_\n* `Ionel Cristian M\u0103rie\u0219 `_\n* `Joshua Fehler `_\n* `Laurence Rowe `_\n* `Marco Buccini `_\n* `Mikko Ohtamaa `_\n* `Oleg Pidsadnyi `_\n* `Peter Lauri `_\n* `Suresh V `_\n* `Tom\u00e1\u0161 Ehrlich `_\n\nChangelog\n=========\n\n2.0.1\n-----\n\n- Address compatibility with pytest >= 4\n\n2.0.0\n-----\n\n- Bump minimum splinter version to 0.9.0 (jsfehler)\n- Remove phantomjs support. (jsfehler)\n\n1.9.1\n-----\n\n- Fix utf-8 decode warnings when taking screenshots with pytest-xdist active `#108 `_ (jsfehler)\n\n\n1.9.0\n-----\n\n- Use getfixturevalue instead of getfuncargvalue `#97\n `_ (pelme)\n\n- Added Chrome headless support (miohtama)\n\n\n1.8.6\n-----\n\n- Fix screenshots not being taken when used with xdist (youtux)\n\n\n1.8.5\n-----\n\n- Fixed issue with xdist `#94 `_ (bubenkoff)\n\n\n1.8.3\n-----\n\n- Profile does not work with geckodriver+remote webdriver\n `#90 `_) (pelme)\n\n\n1.8.2\n-----\n\n- Fixed missing `switch_to` method (some selenium `expected_conditions` are broken without\n it, see `#93 `_)\n\n\n1.8.1\n-----\n\n- Ensure node's `splinter_failure` always exists (bubenkoff, pelme)\n- Correctly handle skipped tests (bubenkoff, schtibe)\n\n\n1.8.0\n-----\n\n- Limit retry behavior for `prepare_browser` (bubenkoff)\n- Workaround for cleaning cookies (Edge browser) (bubenkoff)\n\n\n1.7.8\n-----\n\n- Make it possible to override the default value for --splinter-wait-time (magnus-staberg)\n\n\n1.7.7\n-----\n\n- Make it possible to override the default `--splinter-webdriver` (pelme)\n- Fix screenshots for function scoped fixtues (pelme)\n\n1.7.6\n-----\n\n- Support pytest 3 (bubenkoff)\n- Less opionated override of splinter's visit (bubenkoff)\n\n1.7.5\n-----\n\n- escape screenshot paths for path separators (bubenkoff)\n\n\n1.7.4\n-----\n\n- use tmpdir_factory to get session scoped tmpdir (RonnyPfannschmidt, bubenkoff)\n\n\n1.7.3\n-----\n\n- fixed Firefox freezing when opening a missing codec extension (olegpidsadnyi)\n\n\n1.7.2\n-----\n\n- fixed taking a screenshot with pytest>=2.9.0 (olegpidsadnyi)\n\n\n1.7.1\n-----\n\n- pytest warnings fixed (firebirdberlin)\n- remove firefox firstrun script (aaugustin, bubenkoff)\n\n1.7.0\n-----\n\n- add possibility to clean cookies on given domains during the browser cleanup, document cookies cleanup (bubenkoff)\n\n1.6.6\n-----\n\n- screenshot encoding made flexible (bubenkoff)\n\n1.6.2\n-----\n\n- pass timeout to restored connection (bubenkoff)\n\n1.6.0\n-----\n\n- added html screenshot (bubenkoff, blueyed)\n\n1.5.3\n-----\n\n- remote webdriver fixes (bubenkoff)\n\n1.5.2\n-----\n\n- respect splinter_make_screenshot_on_failure (bubenkoff)\n\n1.5.1\n-----\n\n- use native selenium socket timeout feature (pelme)\n\n1.5.0\n-----\n\n- pytest tmpdir_factory support (bubenkoff)\n- depend on splinter 0.7.3, remove the previous status_code monkey patch (pelme)\n- add option `--splinter-wait-time` to specify splinter explicit wait timeout (pelme)\n\n1.4.6\n-----\n\n- ensure base tempdir exists (bubenkoff)\n\n\n1.4.0\n-----\n\n- introduce splinter_browser_class fixture (bubenkoff, ecesena)\n\n\n1.3.8\n-----\n\n- correctly handle zope.testbrowser splinter driver (bubenkoff)\n\n\n1.3.7\n-----\n\n- pass `splinter_selenium_implicit_wait` as `wait_time` to splinter Browser (lrowe)\n\n\n1.3.6\n-----\n\n- properly respect webdriver executable command line option (bubenkoff, bh)\n\n\n1.3.5\n-----\n\n- add option --splinter-webdriver-executable for phantomjs and chrome (sureshvv)\n\n\n1.3.4\n-----\n\n- make ``browser_instance_getter`` session scoped, add ``session_browser`` fixture (bubenkoff, sureshvv)\n\n\n1.3.3\n-----\n\n- make ``mouse_over`` comparible with more use-cases (bubenkoff)\n\n\n1.3.1\n-----\n\n- properly handle driver switch during the test run (bubenkoff)\n- respect splinter_session_scoped_browser fixture (bubenkoff)\n\n\n1.2.10\n------\n\n- handle exceptions during screenshot saving (blueyed, bubenkoff)\n- documentation improvements (blueyed)\n\n\n1.2.9\n-----\n\n- status_code is back in a lazy way (bubenkoff)\n\n\n1.2.7\n-----\n\n- Fix automatic download of pdf content type (bubenkoff)\n\n\n1.2.4\n-----\n\n- fix failing the test run if pytest-xdist is not installed, as it's completely optional dependency (bubenkoff, slafs)\n\n\n1.2.3\n-----\n\n- improve exception handing when preparing the browser instance (bubenkoff)\n- require pytest (bubenkoff)\n\n\n1.2.0\n-----\n\n- automatic screenshot capture on test failure (bubenkoff)\n- improvements to the browser preparation procedure (bubenkoff)\n- boolean config options made more clear (bubenkoff)\n\n\n1.1.1\n-----\n\n- restore browser parameters on each test run instead of once for browser start (bubenkoff)\n\n\n1.1.0\n-----\n\n- added possibility to have multiple browser instances for single test (amakhnach, bubenkoff)\n\n\n1.0.4\n-----\n\n- Fixed browser fixture to support splinter_browser_load_condition and splinter_browser_load_timeout by default. (markon)\n\n\n1.0.3\n-----\n\n- unicode fixes to setup.py (bubenkoff, valberg)\n\n\n1.0.2\n-----\n\n- wait_for_condition now receives pytest_bdd.plugin.Browser object, not selenium webdriver one (bubenkoff)\n\n\n1.0.1\n-----\n\n- Refactoring and cleanup (bubenkoff)\n\n\n1.0.0\n-----\n\n- Initial public release", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/pytest-dev/pytest-splinter", "keywords": "", "license": "MIT license", "maintainer": "", "maintainer_email": "", "name": "pytest-splinter", "package_url": "https://pypi.org/project/pytest-splinter/", "platform": "", "project_url": "https://pypi.org/project/pytest-splinter/", "project_urls": { "Homepage": "https://github.com/pytest-dev/pytest-splinter" }, "release_url": "https://pypi.org/project/pytest-splinter/2.0.1/", "requires_dist": null, "requires_python": "", "summary": "Splinter plugin for pytest testing framework", "version": "2.0.1" }, "last_serial": 4816854, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "e5551ff64a3fffb15702d24eaf0995bf", "sha256": "2417131ad52e46696d26f3eb7a0a4901a890f09dd678c7753254b89dc5774d33" }, "downloads": -1, "filename": "pytest-splinter-1.0.1.tar.gz", "has_sig": false, "md5_digest": "e5551ff64a3fffb15702d24eaf0995bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8163, "upload_time": "2014-04-09T13:43:09", "url": "https://files.pythonhosted.org/packages/29/19/37dae75eb67ada80ec188253e592ac560cae856fd46d7fb229311c568237/pytest-splinter-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "a0a92bfa6079bf93344af6241bd53735", "sha256": "0a7c945a2118a691eb99c0d5408646e9467fdd27a85d0531f681959ff0943ce0" }, "downloads": -1, "filename": "pytest-splinter-1.0.2.tar.gz", "has_sig": false, "md5_digest": "a0a92bfa6079bf93344af6241bd53735", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8239, "upload_time": "2014-04-10T08:35:42", "url": "https://files.pythonhosted.org/packages/a5/aa/ce0c74bf15dfedaa06a764f58ea0fd12d77bce92ec7617eadaca0fc3eeaf/pytest-splinter-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "cd17199dfa8b0120b8d063440f8964d3", "sha256": "60eaf58ae89ff84c72e7ac7d2b57316fd4f93113b440ac9c6fb8b542a068cf7c" }, "downloads": -1, "filename": "pytest-splinter-1.0.3.tar.gz", "has_sig": false, "md5_digest": "cd17199dfa8b0120b8d063440f8964d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8462, "upload_time": "2014-06-10T14:37:23", "url": "https://files.pythonhosted.org/packages/90/34/b9a3eb76da6f41a50d4ca357dcb88077a641d9e071c187d2558a566cb356/pytest-splinter-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "bd98f7cf00540eea50dd454b8e0ea182", "sha256": "a8a612435702605d91a13e7e1698a075eb8b5e524fa418b6c12448d5a4f1f6ce" }, "downloads": -1, "filename": "pytest-splinter-1.1.0.tar.gz", "has_sig": false, "md5_digest": "bd98f7cf00540eea50dd454b8e0ea182", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10824, "upload_time": "2014-09-08T12:07:23", "url": "https://files.pythonhosted.org/packages/06/47/9a5fdffd2aab57b4898604c560f63cfed62d381a8006812dace1551ef86a/pytest-splinter-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "02dad11193d909011b13b9a88b7ab344", "sha256": "4fc398ddd6876481bc3c7e4fb8a545753d21ec66ccee7630fe8046f6c6a897bb" }, "downloads": -1, "filename": "pytest-splinter-1.1.1.tar.gz", "has_sig": false, "md5_digest": "02dad11193d909011b13b9a88b7ab344", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11992, "upload_time": "2014-09-15T13:33:37", "url": "https://files.pythonhosted.org/packages/b5/36/7930c6530a9a51b71dc70081f035611adca8f279f7143f445c044bb3d9d3/pytest-splinter-1.1.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "a6b04cfabdcd2f284e9a9e9bac5efd76", "sha256": "ee0494094a19799f2761ced21ef36e35c352f364ba78d534ee01c636a4c6a9c9" }, "downloads": -1, "filename": "pytest-splinter-1.2.0.tar.gz", "has_sig": false, "md5_digest": "a6b04cfabdcd2f284e9a9e9bac5efd76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11248, "upload_time": "2014-09-26T11:26:47", "url": "https://files.pythonhosted.org/packages/97/22/68bd91352f770ff7eb7bd122cac5766a881b6de3519e91b25a566052b320/pytest-splinter-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "ab4bbc21ccff6deee2e9995578bd6896", "sha256": "9bb4e16625239013aa1884bb149bf648d13e023ebde7cad0070149b371e856d5" }, "downloads": -1, "filename": "pytest-splinter-1.2.1.tar.gz", "has_sig": false, "md5_digest": "ab4bbc21ccff6deee2e9995578bd6896", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11319, "upload_time": "2014-09-26T15:15:56", "url": "https://files.pythonhosted.org/packages/f1/1e/d78a5937894d819ffd097b970390015083bfddd83ceb8689d5c510fba1c9/pytest-splinter-1.2.1.tar.gz" } ], "1.2.10": [ { "comment_text": "", "digests": { "md5": "6e9363fb0db74f02eaddc3d691ac4914", "sha256": "8e24803a5480dc6ed194075c8a3a859c2c08a329de35a6ba65f6307c05af731c" }, "downloads": -1, "filename": "pytest-splinter-1.2.10.tar.gz", "has_sig": false, "md5_digest": "6e9363fb0db74f02eaddc3d691ac4914", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12701, "upload_time": "2015-01-30T01:02:14", "url": "https://files.pythonhosted.org/packages/76/f2/06be3c217b5613990e8be0eec3a440e18264dc88bf0db94ae9507b16a20a/pytest-splinter-1.2.10.tar.gz" } ], "1.2.11": [ { "comment_text": "", "digests": { "md5": "cbb570d72b3a9e9e91589a267b70b587", "sha256": "72162f9b133408db4ca8835d57674ab708715bc603560c9a1b27a0aa603dd189" }, "downloads": -1, "filename": "pytest-splinter-1.2.11.tar.gz", "has_sig": false, "md5_digest": "cbb570d72b3a9e9e91589a267b70b587", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16609, "upload_time": "2015-03-19T00:34:17", "url": "https://files.pythonhosted.org/packages/b4/5f/46941c7ca4d3bbd56b1fc4c095435038b25bd3124a7a49003ec89284798d/pytest-splinter-1.2.11.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "26c7758d8f546dffb0d614fbef1fc811", "sha256": "d3ea2775a38f488f72b526066a701e7a4581a06deb0dfde2f7eaa76f2531d66d" }, "downloads": -1, "filename": "pytest-splinter-1.2.2.tar.gz", "has_sig": false, "md5_digest": "26c7758d8f546dffb0d614fbef1fc811", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11344, "upload_time": "2014-09-26T15:32:16", "url": "https://files.pythonhosted.org/packages/3f/e1/815a54dd3ee61992a4a6a94ade9691ddf66adbba8d65527348878dad5933/pytest-splinter-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "9a152459777343e40a947e5a1682b6f2", "sha256": "2cf10f8bf2e877762067c9c1c1cb79c1cc56650e09f0cdfe219c8c06634add4e" }, "downloads": -1, "filename": "pytest-splinter-1.2.3.tar.gz", "has_sig": false, "md5_digest": "9a152459777343e40a947e5a1682b6f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11533, "upload_time": "2014-09-27T21:53:01", "url": "https://files.pythonhosted.org/packages/5c/5f/7c2d92f69e26ec558207884604c3f65f35f7b2eee47b85e08445db0ee79f/pytest-splinter-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "511ede57d049f6cf6a4f1fa005b083a4", "sha256": "fee6d2c89d1beac0487df00f507a18d166f77d22eb91b4e0bd931d77e90d906f" }, "downloads": -1, "filename": "pytest-splinter-1.2.4.tar.gz", "has_sig": false, "md5_digest": "511ede57d049f6cf6a4f1fa005b083a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11645, "upload_time": "2014-10-19T14:32:35", "url": "https://files.pythonhosted.org/packages/f5/7b/2ae635d1d50fd399fe5d10e60073ff8eefec3d982ddfa128c95eb82869ce/pytest-splinter-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "443e7732b2e0b0e8f81269cb47d132d8", "sha256": "f82fa4a4b66b74c043eb0ac3708e66e888b2f765aa40d1f2df8790a9169d8c95" }, "downloads": -1, "filename": "pytest-splinter-1.2.5.tar.gz", "has_sig": false, "md5_digest": "443e7732b2e0b0e8f81269cb47d132d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12776, "upload_time": "2014-12-18T12:24:03", "url": "https://files.pythonhosted.org/packages/2d/ed/7f2dfbf4c749b14fd4d8fb7bb2beda85d9ff09564618815a89c359d84e7b/pytest-splinter-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "ad11b106ce697225b9dd32e3e2507a7c", "sha256": "588f697c91a37b76aded94bddc1db7c7d3fca40dc710ea2dfc544a048775673a" }, "downloads": -1, "filename": "pytest-splinter-1.2.6.tar.gz", "has_sig": false, "md5_digest": "ad11b106ce697225b9dd32e3e2507a7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12787, "upload_time": "2014-12-18T12:24:46", "url": "https://files.pythonhosted.org/packages/95/d3/5bcb00fbae92dbc0a016b21c466be94ed46301ed9cfb3e4966b0f9716e7f/pytest-splinter-1.2.6.tar.gz" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "c09e91cc3b8e026e63eccf667f5c74a4", "sha256": "759356ce50555df75d140acfa2e4d90346929e99e8392ee6fcfaccff98d92e6c" }, "downloads": -1, "filename": "pytest-splinter-1.2.7.tar.gz", "has_sig": false, "md5_digest": "c09e91cc3b8e026e63eccf667f5c74a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12882, "upload_time": "2014-12-18T13:05:29", "url": "https://files.pythonhosted.org/packages/bb/93/140c9ada0751926b5fe4e533d6313d5976a449f887c6661fd724587eac74/pytest-splinter-1.2.7.tar.gz" } ], "1.2.8": [ { "comment_text": "", "digests": { "md5": "42818a5d70009d223c4c68bcf7b4d99e", "sha256": "239dafc835ea9aae1d931f11f4780330d0332d3d0a1181597860a1c122ccd991" }, "downloads": -1, "filename": "pytest-splinter-1.2.8.tar.gz", "has_sig": false, "md5_digest": "42818a5d70009d223c4c68bcf7b4d99e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12388, "upload_time": "2015-01-18T22:23:44", "url": "https://files.pythonhosted.org/packages/03/a4/4b7df86c80b65fdf799e4e2e4bf50421fe131f2bc30f3d936d1326007d43/pytest-splinter-1.2.8.tar.gz" } ], "1.2.9": [ { "comment_text": "", "digests": { "md5": "28573c8dd69725ef3bdae3c457618d1c", "sha256": "944b386a7c259a18e199c5174559f58d5943fd2654b66c44a9af5f029d19fca2" }, "downloads": -1, "filename": "pytest-splinter-1.2.9.tar.gz", "has_sig": false, "md5_digest": "28573c8dd69725ef3bdae3c457618d1c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12387, "upload_time": "2015-01-18T22:32:32", "url": "https://files.pythonhosted.org/packages/46/78/039d0fb4e0c56a518e5df0342d81f9796975af380f0375e6e25c314105aa/pytest-splinter-1.2.9.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "f9735ea43f7487a23036d8b1c92ab1ad", "sha256": "e7f5f1b701a95c0b74f9a0ba9753ed4d7e1c9b1e78cd534d7a2b66766e4d594c" }, "downloads": -1, "filename": "pytest-splinter-1.3.0.tar.gz", "has_sig": false, "md5_digest": "f9735ea43f7487a23036d8b1c92ab1ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14061, "upload_time": "2015-04-03T15:26:59", "url": "https://files.pythonhosted.org/packages/ba/d3/ada11e8360f70a6d9f23330e1994958de5df136121dec87aff21dcf1e719/pytest-splinter-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "e98672b5fda35b9cb0068b28b0da18b6", "sha256": "c35ffb29fbc92110abec2be27b88eaa8b2bbb746a9a07a79fd537e408e3b0afd" }, "downloads": -1, "filename": "pytest-splinter-1.3.1.tar.gz", "has_sig": false, "md5_digest": "e98672b5fda35b9cb0068b28b0da18b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16631, "upload_time": "2015-04-05T21:58:10", "url": "https://files.pythonhosted.org/packages/e3/dc/f2738125d5db2112439867cb7672315d51c7636d12837355e3beca3f2b2c/pytest-splinter-1.3.1.tar.gz" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "abb3eb86f66bc46dde2751daf7be0911", "sha256": "0d45ed97e0d1cf84f552c15ce23ebf6b9fa2ae8393755deebbfebc27d6c4bf60" }, "downloads": -1, "filename": "pytest-splinter-1.3.2.tar.gz", "has_sig": false, "md5_digest": "abb3eb86f66bc46dde2751daf7be0911", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16715, "upload_time": "2015-04-06T09:58:04", "url": "https://files.pythonhosted.org/packages/cf/54/a583252be3fd0eab23dd7e8033a0f23303c3da387965216af8d75e5715b8/pytest-splinter-1.3.2.tar.gz" } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "7ccf4b2e5d891a6f32090188b8c8747e", "sha256": "8ec7327bfbe6aa18e2043e815e1c92b710f456f479892defd3291d78eab865a7" }, "downloads": -1, "filename": "pytest-splinter-1.3.3.tar.gz", "has_sig": false, "md5_digest": "7ccf4b2e5d891a6f32090188b8c8747e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16717, "upload_time": "2015-04-06T21:06:22", "url": "https://files.pythonhosted.org/packages/0b/11/5b7239a5b62d54b4247bfbee9e2ba64b3f5052348c566c43156fb51c5ef7/pytest-splinter-1.3.3.tar.gz" } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "b0c141872c1653dcfcafeb25006629de", "sha256": "9119de0b51eb63de1d9930d91763054838c5acf3da1ffb05d012662455b8193e" }, "downloads": -1, "filename": "pytest-splinter-1.3.4.tar.gz", "has_sig": false, "md5_digest": "b0c141872c1653dcfcafeb25006629de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14640, "upload_time": "2015-04-07T16:23:19", "url": "https://files.pythonhosted.org/packages/21/58/84eca6c8e3065c606406bb7a3ad667580613f3d1261e302ab809c2a19d4d/pytest-splinter-1.3.4.tar.gz" } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "1c04391ab3024dd5d217ba1183c6cbfa", "sha256": "d4ccc61f770ef6bc01ea94001d295a2e84beba9536c5b790fab16b398f5077e2" }, "downloads": -1, "filename": "pytest-splinter-1.3.5.tar.gz", "has_sig": false, "md5_digest": "1c04391ab3024dd5d217ba1183c6cbfa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14864, "upload_time": "2015-04-14T14:12:51", "url": "https://files.pythonhosted.org/packages/ad/d1/44deab6777f11d357683afdf0daf331f2021357162c609951e9d6c32a965/pytest-splinter-1.3.5.tar.gz" } ], "1.3.6": [ { "comment_text": "", "digests": { "md5": "766baa8e0796233dc636f2cdcb442cfb", "sha256": "82b7c9a092bcdf26b66610809a5c45dba6d3fd487f415540a38f5fcd265f8da7" }, "downloads": -1, "filename": "pytest-splinter-1.3.6.tar.gz", "has_sig": false, "md5_digest": "766baa8e0796233dc636f2cdcb442cfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14938, "upload_time": "2015-04-21T11:07:44", "url": "https://files.pythonhosted.org/packages/47/b9/e4215ede011ff4c9ecbdd4e8e9c4141b62b42d6c1c36d46379bdf2076b48/pytest-splinter-1.3.6.tar.gz" } ], "1.3.7": [ { "comment_text": "", "digests": { "md5": "c188d48b12446a5341b32430e1e233ff", "sha256": "74af610ca0dbbdf03eb1e7e5ca87bf601e4a53020f68aab6440a3a60aee2916c" }, "downloads": -1, "filename": "pytest-splinter-1.3.7.tar.gz", "has_sig": false, "md5_digest": "c188d48b12446a5341b32430e1e233ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13685, "upload_time": "2015-06-11T20:27:41", "url": "https://files.pythonhosted.org/packages/be/c8/6ab09b9669efd4e4c151567109b5c5fdb5963e201f17137b899946932a8e/pytest-splinter-1.3.7.tar.gz" } ], "1.3.8": [ { "comment_text": "", "digests": { "md5": "54325141b0270d7885cef9a6e03c9752", "sha256": "2d751f7682bd45786629617ef0f6988681cb0e55d4921d15a798204392c31f03" }, "downloads": -1, "filename": "pytest-splinter-1.3.8.tar.gz", "has_sig": false, "md5_digest": "54325141b0270d7885cef9a6e03c9752", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13738, "upload_time": "2015-06-11T22:45:54", "url": "https://files.pythonhosted.org/packages/49/c5/5dc06a22c0defbb980a1789037502176739b97fb0bbe245fef1d46dbed5e/pytest-splinter-1.3.8.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "50ea586c264246e562652a0bdbb36d8a", "sha256": "ae403d7ab5bc259650ffc909d7ceab3af0c1950586b105415acae8b1538c416c" }, "downloads": -1, "filename": "pytest-splinter-1.4.0.tar.gz", "has_sig": false, "md5_digest": "50ea586c264246e562652a0bdbb36d8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13971, "upload_time": "2015-06-20T22:51:23", "url": "https://files.pythonhosted.org/packages/92/e2/0ee1fb72b1c68af7d03b033eb8f4974f0a7fdb86359b9abd7b3365365a39/pytest-splinter-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "0c6bc35e8db39a050c7cd04bd9b97cac", "sha256": "d320e1650fbbab011497852da5c9ec59e4b6471d156fe158c084df5739ee2f7e" }, "downloads": -1, "filename": "pytest-splinter-1.4.1.tar.gz", "has_sig": false, "md5_digest": "0c6bc35e8db39a050c7cd04bd9b97cac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14041, "upload_time": "2015-07-10T23:10:59", "url": "https://files.pythonhosted.org/packages/c6/f6/4ef3f6ee8f7f9a93e3b9e5ed8bfc24d4f4474b1b4d8faf6b37fc64e5f908/pytest-splinter-1.4.1.tar.gz" } ], "1.4.10": [ { "comment_text": "", "digests": { "md5": "63e6c01c634cb320175d659e91e8dd4e", "sha256": "60bc7ca01297e20e3557b97a5c0559bbef3da79a3b44e24b8be7d3072263836a" }, "downloads": -1, "filename": "pytest-splinter-1.4.10.tar.gz", "has_sig": false, "md5_digest": "63e6c01c634cb320175d659e91e8dd4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16163, "upload_time": "2015-08-21T08:09:41", "url": "https://files.pythonhosted.org/packages/3d/a5/2302231f8e0ae3aea73db328e7fa27415c7c1a4f58648f623a1d8acda887/pytest-splinter-1.4.10.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "b3f3e3a8f88ba7bfd817d4bd96fa7680", "sha256": "417ea4b3c79eac598884c2686f8d2facc0245bbd060299b523fb18e3a8d4f881" }, "downloads": -1, "filename": "pytest-splinter-1.4.2.tar.gz", "has_sig": false, "md5_digest": "b3f3e3a8f88ba7bfd817d4bd96fa7680", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13967, "upload_time": "2015-07-10T23:50:56", "url": "https://files.pythonhosted.org/packages/9e/21/3d38fbcfa4b5c8b6ae5d5241d9283765918f7654ca7b9bcee9f3eb083358/pytest-splinter-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "b5f093b2904a75ffb0f267cbdcf8d1d7", "sha256": "8cddaeaeb9d228c0d535dc96c7b663d079a0ef348c6ef82080c6dd1d427438a4" }, "downloads": -1, "filename": "pytest-splinter-1.4.3.tar.gz", "has_sig": false, "md5_digest": "b5f093b2904a75ffb0f267cbdcf8d1d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13994, "upload_time": "2015-07-11T00:34:10", "url": "https://files.pythonhosted.org/packages/c5/70/c44f4fccdbe3f52f1c573d606452faa5303566fa65b9f0fa8652c7b7c123/pytest-splinter-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "b489f7b41e6de9bc70078f657000a9ca", "sha256": "bc57046bd39780c2996f26bc2c80e2d71042e18027d65693bdd744794552c604" }, "downloads": -1, "filename": "pytest-splinter-1.4.4.tar.gz", "has_sig": false, "md5_digest": "b489f7b41e6de9bc70078f657000a9ca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13990, "upload_time": "2015-07-11T00:53:39", "url": "https://files.pythonhosted.org/packages/3c/26/029b377fb5045da7ac1cb524bfe4e5363e24bce98cfb2cd2a8fb38a8e83e/pytest-splinter-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "204bfb9842c65b81b389e97d5e845de2", "sha256": "42e974758fdaa0ea6c2772db6d3385b831ddc38477676f1b1ed602e8c1d7e44a" }, "downloads": -1, "filename": "pytest-splinter-1.4.5.tar.gz", "has_sig": false, "md5_digest": "204bfb9842c65b81b389e97d5e845de2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15441, "upload_time": "2015-07-13T09:45:53", "url": "https://files.pythonhosted.org/packages/48/6e/50c7c9dc6fb26654076d50e5ca0cf5f0efd8564307dcf248d18557e47cfe/pytest-splinter-1.4.5.tar.gz" } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "09f7cef14a5905f2ef23b4bbd67993c6", "sha256": "7f32c4ea07d43994a2819e12d1bfca5aa57ecb001fcc1ebfd303955eebb3ef96" }, "downloads": -1, "filename": "pytest-splinter-1.4.6.tar.gz", "has_sig": false, "md5_digest": "09f7cef14a5905f2ef23b4bbd67993c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15434, "upload_time": "2015-07-13T11:32:20", "url": "https://files.pythonhosted.org/packages/23/f6/4635fc5ed53bbc3ba17cbfe6ea6169789cf5a6486b5eae5caf7b47f1be62/pytest-splinter-1.4.6.tar.gz" } ], "1.4.7": [ { "comment_text": "", "digests": { "md5": "7952a8c012c801a774bb7d4b00969e0a", "sha256": "0c33bb449f27df15b20982ec2f4760f0ec9b33981781fbed88e74b036428a88c" }, "downloads": -1, "filename": "pytest-splinter-1.4.7.tar.gz", "has_sig": false, "md5_digest": "7952a8c012c801a774bb7d4b00969e0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15583, "upload_time": "2015-08-17T18:35:31", "url": "https://files.pythonhosted.org/packages/37/77/ae8a64dd02104c4b42d3ae090aa079f79aa19951a15531dc6cf117a4e468/pytest-splinter-1.4.7.tar.gz" } ], "1.4.8": [ { "comment_text": "", "digests": { "md5": "947583bc792a716697ea827740272308", "sha256": "1ac190050246a9c0b07743cbef14b15cb2890986bf4ebd18af91e72e12923229" }, "downloads": -1, "filename": "pytest-splinter-1.4.8.tar.gz", "has_sig": false, "md5_digest": "947583bc792a716697ea827740272308", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15630, "upload_time": "2015-08-17T22:14:22", "url": "https://files.pythonhosted.org/packages/ca/96/ed4b9da84ce28de7b087552af09024fba72476759befe955b1edcfc1fb02/pytest-splinter-1.4.8.tar.gz" } ], "1.4.9": [ { "comment_text": "", "digests": { "md5": "3093f2f98c24d211d8bb75a16b4cba4b", "sha256": "b98d19fa10bc6e194afb032af092d0805c234f6dd646521c4443320aadf9993e" }, "downloads": -1, "filename": "pytest-splinter-1.4.9.tar.gz", "has_sig": false, "md5_digest": "3093f2f98c24d211d8bb75a16b4cba4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15847, "upload_time": "2015-08-21T07:48:09", "url": "https://files.pythonhosted.org/packages/70/f1/2732f8189abdf66ccf3626c766341956cf5979ea8e71a310dd2dea452de9/pytest-splinter-1.4.9.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "6dfec6bbd2038579824bd828a79714f2", "sha256": "7c3ae3c3aff187e07a09408865050dde8aef33a8169c50015412922081611d03" }, "downloads": -1, "filename": "pytest-splinter-1.5.0.tar.gz", "has_sig": false, "md5_digest": "6dfec6bbd2038579824bd828a79714f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15964, "upload_time": "2015-08-21T08:34:02", "url": "https://files.pythonhosted.org/packages/74/f6/f653cac3060b9634b3ca505e0463a38d1871ee7ebd35d0e2f28887da3705/pytest-splinter-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "b5aadaa9df1e7838b7fdc23b9d8bd412", "sha256": "16fc24f19e31319e94d3dd1f8cd900f704ff9e5ab10ce49fe17358a6eb7562be" }, "downloads": -1, "filename": "pytest-splinter-1.5.1.tar.gz", "has_sig": false, "md5_digest": "b5aadaa9df1e7838b7fdc23b9d8bd412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15985, "upload_time": "2015-08-21T08:46:10", "url": "https://files.pythonhosted.org/packages/23/ac/4f80a09c67b02b6d0d35bad397eeaa89984245efd6ab796caea56a54d72b/pytest-splinter-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "cc442c15ddbfb5dfee6e49303f061b74", "sha256": "cfd3bd9db04792b91b63014f048299c97ade9f3b68574e9dba735ae9163499fe" }, "downloads": -1, "filename": "pytest-splinter-1.5.2.tar.gz", "has_sig": false, "md5_digest": "cc442c15ddbfb5dfee6e49303f061b74", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16025, "upload_time": "2015-08-21T08:50:26", "url": "https://files.pythonhosted.org/packages/72/c9/fa42ed08c0bc4378e248fdd9b7605497f4f9beea9b346fa2fc51a42902ce/pytest-splinter-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "9c0cb065ada131fda5ee70c820cb7b3a", "sha256": "9949c350802aa5495db319c052857a4eec48402b8a03533e0187de331f146efb" }, "downloads": -1, "filename": "pytest-splinter-1.5.3.tar.gz", "has_sig": false, "md5_digest": "9c0cb065ada131fda5ee70c820cb7b3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18492, "upload_time": "2015-08-21T23:01:16", "url": "https://files.pythonhosted.org/packages/eb/50/d8d07dd81f64fcacb07486171a3f23836b738c29f6386efef42ea71723e6/pytest-splinter-1.5.3.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "6a770e04fff544f09759f5223651353f", "sha256": "856bc73a049aad78b0f21be6ef88b5a74e18bdfcf27b2ca8a69bc775e1162b4f" }, "downloads": -1, "filename": "pytest-splinter-1.6.0.tar.gz", "has_sig": false, "md5_digest": "6a770e04fff544f09759f5223651353f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18881, "upload_time": "2015-08-22T00:10:34", "url": "https://files.pythonhosted.org/packages/d1/d6/c34fc08cc8718b5c4489bf6a698380f96e39f832ae841ff523345165069f/pytest-splinter-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "ce493a698a084c92fdad0192a910f8e3", "sha256": "e3557ec6c0a64354dfb69c8f46dd9c293272d8be47b023122d25492f1f53b451" }, "downloads": -1, "filename": "pytest-splinter-1.6.1.tar.gz", "has_sig": false, "md5_digest": "ce493a698a084c92fdad0192a910f8e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18924, "upload_time": "2015-08-22T01:00:10", "url": "https://files.pythonhosted.org/packages/4d/de/6aaef15cd27125cf8238fab4dc4db70400a62f47c006b3407b87c1260379/pytest-splinter-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "e8e65aa82277cf385e4c081876b4ba47", "sha256": "f5855025b6d11dfa6fe716745fd1120b6b037ba26528bf95a1626d402a26bd0e" }, "downloads": -1, "filename": "pytest-splinter-1.6.2.tar.gz", "has_sig": false, "md5_digest": "e8e65aa82277cf385e4c081876b4ba47", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18931, "upload_time": "2015-08-22T01:23:54", "url": "https://files.pythonhosted.org/packages/04/1a/237d85e7ca6751fe8f4b548773b38e8c1f0e4ceb50a9e6ad211aae8be513/pytest-splinter-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "5a3ea2455eec96845b8dccf116e92444", "sha256": "ca3e1a03514520bf633ba45201eeeb970ae333bf1e8ee71ddeca8c5b45fa81f5" }, "downloads": -1, "filename": "pytest-splinter-1.6.3.tar.gz", "has_sig": false, "md5_digest": "5a3ea2455eec96845b8dccf116e92444", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19138, "upload_time": "2015-08-22T02:16:15", "url": "https://files.pythonhosted.org/packages/58/c9/c9c5c6cb7389ad8702fe2ab63105b63d5c8b0259775a5e75d30bb839c220/pytest-splinter-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "f73d769f22cfd7c08022a9d42208882a", "sha256": "fd2e18400c2df44789e4d8ea36af8d7e6cabe93cebd82531f3fe03722a22d2e2" }, "downloads": -1, "filename": "pytest-splinter-1.6.4.tar.gz", "has_sig": false, "md5_digest": "f73d769f22cfd7c08022a9d42208882a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19142, "upload_time": "2015-08-22T02:19:41", "url": "https://files.pythonhosted.org/packages/12/a8/c8aae0a3138a1929e0a546a56a727b41f8e4266df811c668ecdf5f820a4f/pytest-splinter-1.6.4.tar.gz" } ], "1.6.6": [ { "comment_text": "", "digests": { "md5": "aac7dc1e121166012b1d010c8aae90fb", "sha256": "805ac1901daf05bb6c1dc69521fcdbe5d692c07e532bbba9115724dd4eb467ba" }, "downloads": -1, "filename": "pytest-splinter-1.6.6.tar.gz", "has_sig": false, "md5_digest": "aac7dc1e121166012b1d010c8aae90fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19446, "upload_time": "2015-08-22T03:28:32", "url": "https://files.pythonhosted.org/packages/a8/c3/51681646817e6540787012cdc5a089e8047bb9b84439f46a382dfe245bd1/pytest-splinter-1.6.6.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "ccd8dc544336bd2afcf3e917c985a70c", "sha256": "e65841e246fd4b093eb6100ec3c46a6c3e6b324c0d870b3bb761949fcfca641d" }, "downloads": -1, "filename": "pytest-splinter-1.7.0.tar.gz", "has_sig": false, "md5_digest": "ccd8dc544336bd2afcf3e917c985a70c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20165, "upload_time": "2015-08-30T21:48:59", "url": "https://files.pythonhosted.org/packages/79/e0/a93bebc839fb5706c6aa3497f1cd8b02a21333f288de743ab3f01f078b41/pytest-splinter-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "12ad177e0a07d9b65bf0846d4c3e743e", "sha256": "9e45867dfaba45645c04a4fc5138e1b80e951f3006c49cbe5572716d97d23565" }, "downloads": -1, "filename": "pytest-splinter-1.7.1.tar.gz", "has_sig": false, "md5_digest": "12ad177e0a07d9b65bf0846d4c3e743e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20769, "upload_time": "2016-01-27T12:49:20", "url": "https://files.pythonhosted.org/packages/52/1d/790612fc279178418af85dd43a31fa8ae78dda6068eb486385b446fff59d/pytest-splinter-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "d118b8baf41c15ad674cc4e9a5d8e188", "sha256": "8d1516ca86c2a6e619197090077739dae9f51f03af18e2222aa595f93e61e32f" }, "downloads": -1, "filename": "pytest-splinter-1.7.2.tar.gz", "has_sig": false, "md5_digest": "d118b8baf41c15ad674cc4e9a5d8e188", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20990, "upload_time": "2016-03-23T09:46:50", "url": "https://files.pythonhosted.org/packages/16/e9/9d7236856cf92f83cf44e82c1b880a66f518d1d2babdbb1883798ec4bd70/pytest-splinter-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "8dd9e42397aa2584409cab2c03d1edc2", "sha256": "38f975081e16168632e331ed9f31206f5ba933618c58a4af45ac3afedcebabe9" }, "downloads": -1, "filename": "pytest-splinter-1.7.3.tar.gz", "has_sig": false, "md5_digest": "8dd9e42397aa2584409cab2c03d1edc2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21105, "upload_time": "2016-04-15T09:56:04", "url": "https://files.pythonhosted.org/packages/79/ad/c4c133028e4acd2dde93bb82ceca3a7498a19138116fa5067c8c79efd8e5/pytest-splinter-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "e12bf52a9b4a369dc036301cdcd13294", "sha256": "5a07e302cbe5b4479eef6f3603aef3c0e22899124675cd6772d8f01421ee93ea" }, "downloads": -1, "filename": "pytest-splinter-1.7.4.tar.gz", "has_sig": false, "md5_digest": "e12bf52a9b4a369dc036301cdcd13294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21161, "upload_time": "2016-07-16T14:46:30", "url": "https://files.pythonhosted.org/packages/bb/4a/0e659bf3327ed22b86a5c1bc5c507cfb2bb026cf8e0e2267a8eaa0f6a540/pytest-splinter-1.7.4.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "f55f322dcaac2263afa0f27d0a564f6b", "sha256": "1c4a31fb1a873b807f04b77f993ea8e1521955b69c77afcdc40b90812a486101" }, "downloads": -1, "filename": "pytest-splinter-1.7.5.tar.gz", "has_sig": false, "md5_digest": "f55f322dcaac2263afa0f27d0a564f6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21232, "upload_time": "2016-07-16T17:12:13", "url": "https://files.pythonhosted.org/packages/40/68/64cae56b6bc2cbe8fc8213c5d2933a556f6de73161536334eba3160d80a7/pytest-splinter-1.7.5.tar.gz" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "d265a3cc157c4ff5baf0eb6c3ad20df8", "sha256": "9226417da46bae3ec366157669d54201661deda9610ec0aac04c3bd7e683598f" }, "downloads": -1, "filename": "pytest_splinter-1.7.6-py2-none-any.whl", "has_sig": false, "md5_digest": "d265a3cc157c4ff5baf0eb6c3ad20df8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 22362, "upload_time": "2016-08-21T15:56:13", "url": "https://files.pythonhosted.org/packages/e6/78/34174c4a2ea23166fa32ce819476b313c239fab81551d63de0e520edbdb1/pytest_splinter-1.7.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0409d0324d6b40894a005fbc7feb8179", "sha256": "a5dc02e81e54bd9b761e9f089595794fb8783acc461c753bac226ff973ea8666" }, "downloads": -1, "filename": "pytest-splinter-1.7.6.tar.gz", "has_sig": false, "md5_digest": "0409d0324d6b40894a005fbc7feb8179", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21447, "upload_time": "2016-08-21T15:56:15", "url": "https://files.pythonhosted.org/packages/b9/16/053e87efcd2e523791271c1bb27fe9f9470dc894ead945d0886840a3f0bc/pytest-splinter-1.7.6.tar.gz" } ], "1.7.7": [ { "comment_text": "", "digests": { "md5": "dd3391ada811b78657b94cad9698f516", "sha256": "9e5f9454385438f6ba9608dd1078cfbc059d5b90f568654aa6aa6ec441a24ad7" }, "downloads": -1, "filename": "pytest-splinter-1.7.7.tar.gz", "has_sig": false, "md5_digest": "dd3391ada811b78657b94cad9698f516", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21509, "upload_time": "2016-11-05T10:17:59", "url": "https://files.pythonhosted.org/packages/a5/24/4c3eb74c2c53da48a6cc87aeb6af5ddfae97697c2a98f738fc7ce4c15f34/pytest-splinter-1.7.7.tar.gz" } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "531d7c4238ef186f3d7f01e787529627", "sha256": "b732be50fbf899993e8f1fdb8f38273073e349c206f078871b6b86b8a6e15d75" }, "downloads": -1, "filename": "pytest_splinter-1.7.8-py3-none-any.whl", "has_sig": false, "md5_digest": "531d7c4238ef186f3d7f01e787529627", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 22775, "upload_time": "2016-12-02T09:15:51", "url": "https://files.pythonhosted.org/packages/90/82/49abcc6aec294ef6d702ed970ea6a9d04c2ab17e66baeeb1fc4a2ef13b42/pytest_splinter-1.7.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee4e72f69bf27302fc49040085719f67", "sha256": "8612ef70ca2097193a0ce87c446f435146d86ff41215bbe33e9c184f85ba02fc" }, "downloads": -1, "filename": "pytest-splinter-1.7.8.tar.gz", "has_sig": false, "md5_digest": "ee4e72f69bf27302fc49040085719f67", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21690, "upload_time": "2016-12-02T09:15:54", "url": "https://files.pythonhosted.org/packages/62/25/0f3250401c77a00b7e6d91692a7b74bb82b118a4b6d29a1eab716c76f649/pytest-splinter-1.7.8.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "908f6e319280c6fa4bbae551ade51d0d", "sha256": "f3f13c5c25470a1e914fdeef944903c308eb1c42ffd0b6dbe98d00a74ad61bdd" }, "downloads": -1, "filename": "pytest-splinter-1.8.0.tar.gz", "has_sig": false, "md5_digest": "908f6e319280c6fa4bbae551ade51d0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21732, "upload_time": "2016-12-14T10:58:55", "url": "https://files.pythonhosted.org/packages/81/50/5ca4342f70f0a6d169163b4f9841d5e74323620850149da6d3b019339d40/pytest-splinter-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "196eb00358d71b8d096736687c7b3d7b", "sha256": "3dfd5a640094da7fa0c3cde05f9c8bd11af8e318db8c1f5f92c05b3af91a23ef" }, "downloads": -1, "filename": "pytest-splinter-1.8.1.tar.gz", "has_sig": false, "md5_digest": "196eb00358d71b8d096736687c7b3d7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21854, "upload_time": "2016-12-14T22:14:37", "url": "https://files.pythonhosted.org/packages/3b/11/c10928dcda742af914bda97e77b3be1839d7a02ab91ad1f3d92e52d4522b/pytest-splinter-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "57ffad5858c0b724c7a629827b62a38e", "sha256": "4fc56a02df0ae1acfcc4199739113cda15f37bc19ad6f6de010e7cd9526a4d40" }, "downloads": -1, "filename": "pytest-splinter-1.8.2.tar.gz", "has_sig": false, "md5_digest": "57ffad5858c0b724c7a629827b62a38e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22129, "upload_time": "2017-05-09T14:30:04", "url": "https://files.pythonhosted.org/packages/e7/68/b529e93fe5af84e8249568bd5a1eea29f0060ed171ee90f7e1eba9ac092f/pytest-splinter-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "b48b1b367648a15cef75da2060e2541a", "sha256": "5df9d7d8b5d13786ea5e94be5143dd77578d6798f722f0aa779ecba018f604a6" }, "downloads": -1, "filename": "pytest-splinter-1.8.3.tar.gz", "has_sig": false, "md5_digest": "b48b1b367648a15cef75da2060e2541a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22334, "upload_time": "2017-05-09T14:35:53", "url": "https://files.pythonhosted.org/packages/98/49/f7a4d27ef1c103c944567a402384f5429507983c5e609197de8c11c92837/pytest-splinter-1.8.3.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "4785e49292e07e661c41161519a61ffb", "sha256": "b4c09b7fc3552443d608c00589f644bce2cef3418005a10e1ae1622884627446" }, "downloads": -1, "filename": "pytest-splinter-1.8.4.tar.gz", "has_sig": false, "md5_digest": "4785e49292e07e661c41161519a61ffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22398, "upload_time": "2017-05-16T19:08:43", "url": "https://files.pythonhosted.org/packages/df/a5/48cbe5f3967ffaccc5ae08a8966f6c4af56d1dc67687529ac9830ef7d714/pytest-splinter-1.8.4.tar.gz" } ], "1.8.5": [ { "comment_text": "", "digests": { "md5": "d41d5ec5fd9c31f7a91ffdc575b14e8b", "sha256": "3435a97e161532c947624583369177cff6cd2c39e017ee3493ca9b95cb0375ee" }, "downloads": -1, "filename": "pytest-splinter-1.8.5.tar.gz", "has_sig": false, "md5_digest": "d41d5ec5fd9c31f7a91ffdc575b14e8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22410, "upload_time": "2017-05-17T14:52:00", "url": "https://files.pythonhosted.org/packages/79/e1/b70d4bd8396ba193f5a6c267ae71096cf2dd28327678332fb721f5c9bca9/pytest-splinter-1.8.5.tar.gz" } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "9ebb987dfc643d8e07c64b2ae85343b7", "sha256": "0ff9fd77f8dce663e911164f3f7a118c48d40fc62ffdf100e7143d866a90e9d0" }, "downloads": -1, "filename": "pytest_splinter-1.8.6-py2-none-any.whl", "has_sig": false, "md5_digest": "9ebb987dfc643d8e07c64b2ae85343b7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 22850, "upload_time": "2018-05-29T08:54:05", "url": "https://files.pythonhosted.org/packages/fc/64/ec8b75792964c963328a341f22aa22c3da4dad559e6af55e8eaea76994ba/pytest_splinter-1.8.6-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "73e65d8fb7d5b91846280428b8523bb3", "sha256": "eb4fd025575e199b15678fd75a9396c5d9d29a123dc93ccefde5d1676c7bc48a" }, "downloads": -1, "filename": "pytest-splinter-1.8.6.tar.gz", "has_sig": false, "md5_digest": "73e65d8fb7d5b91846280428b8523bb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22873, "upload_time": "2018-05-29T08:48:21", "url": "https://files.pythonhosted.org/packages/b3/80/6242527be004679be2d61c2c4a46a9ecfec0613d6df5905adf66d789a1cc/pytest-splinter-1.8.6.tar.gz" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "30f702a8a3dcfdb2a30a7fd551b41d6d", "sha256": "b17646d84ae8d7e2cd4084aa146ad2e1f8dcf80e3cfb2bf00d740aa8e2411d60" }, "downloads": -1, "filename": "pytest-splinter-1.9.0.tar.gz", "has_sig": false, "md5_digest": "30f702a8a3dcfdb2a30a7fd551b41d6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23553, "upload_time": "2018-06-03T08:55:03", "url": "https://files.pythonhosted.org/packages/35/e9/00f949f8795776d9a44911eebd4f16de2a3455188486fdc7e1e750ea26a8/pytest-splinter-1.9.0.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "35e6a2e66fed2df1a1e5128d0405d735", "sha256": "6faabbad54e99e3b3aafc419d7d19a808ffc4cda6f2cbd924e39f6125d080c98" }, "downloads": -1, "filename": "pytest-splinter-1.9.1.tar.gz", "has_sig": false, "md5_digest": "35e6a2e66fed2df1a1e5128d0405d735", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23779, "upload_time": "2018-06-18T08:53:14", "url": "https://files.pythonhosted.org/packages/5d/cc/ef61ace0fc6157619d626f0f9621b5a169b081e89cbcc6547fff132a4261/pytest-splinter-1.9.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "5e7e6776c1072d8006dd2920582574f1", "sha256": "a008cb02063aa56f987fde474a0c9beb78faee11679feefbec28e52464d3fd79" }, "downloads": -1, "filename": "pytest-splinter-2.0.0.tar.gz", "has_sig": false, "md5_digest": "5e7e6776c1072d8006dd2920582574f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23716, "upload_time": "2018-08-31T15:32:51", "url": "https://files.pythonhosted.org/packages/a2/20/291c322953113511631d15f623bb83d8e01033277efdf24f643f48c37301/pytest-splinter-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "edd4021cd43e699352d0fa427908f412", "sha256": "8725c2305334aa2eaefcbf158b57abe7d49e7e1f21e45df96900f30c02afd55a" }, "downloads": -1, "filename": "pytest-splinter-2.0.1.tar.gz", "has_sig": false, "md5_digest": "edd4021cd43e699352d0fa427908f412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23797, "upload_time": "2019-02-13T18:02:26", "url": "https://files.pythonhosted.org/packages/0d/36/65bfc3fea9b67049e15a60233e084614d0cfbea90d680a6a0e8906a2f026/pytest-splinter-2.0.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "edd4021cd43e699352d0fa427908f412", "sha256": "8725c2305334aa2eaefcbf158b57abe7d49e7e1f21e45df96900f30c02afd55a" }, "downloads": -1, "filename": "pytest-splinter-2.0.1.tar.gz", "has_sig": false, "md5_digest": "edd4021cd43e699352d0fa427908f412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23797, "upload_time": "2019-02-13T18:02:26", "url": "https://files.pythonhosted.org/packages/0d/36/65bfc3fea9b67049e15a60233e084614d0cfbea90d680a6a0e8906a2f026/pytest-splinter-2.0.1.tar.gz" } ] }