{ "info": { "author": "Tatu Aalto", "author_email": "aalto.tatu@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Robot Framework", "Framework :: Robot Framework :: Library", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Software Development :: Testing" ], "description": "SeleniumLibrary\n===============\n\n.. contents::\n\nIntroduction\n------------\n\nSeleniumLibrary_ is a web testing library for `Robot Framework`_ that\nutilizes the Selenium_ tool internally. The project is hosted on GitHub_\nand downloads can be found from PyPI_.\n\nSeleniumLibrary works with Selenium 3. It supports Python 2.7 as well as\nPython 3.4 or newer. In addition to the normal Python_ interpreter, it\nworks also with PyPy_ and Jython_. Unfortunately Selenium_ is not\ncurrently supported by IronPython_ and thus this library does not work with\nIronPython either.\n\nSeleniumLibrary is based on the `old SeleniumLibrary`_ that was forked to\nSelenium2Library_ and then later renamed back to SeleniumLibrary.\nSee the Versions_ and History_ sections below for more information about\ndifferent versions and the overall project history.\n\n.. image:: https://img.shields.io/pypi/v/robotframework-seleniumlibrary.svg?label=version\n :target: https://pypi.python.org/pypi/robotframework-seleniumlibrary\n\n.. image:: https://img.shields.io/pypi/l/robotframework-seleniumlibrary.svg\n :target: https://www.apache.org/licenses/LICENSE-2.0\n\n.. image:: https://travis-ci.org/robotframework/SeleniumLibrary.svg?branch=master\n :target: https://travis-ci.org/robotframework/SeleniumLibrary\n\nKeyword documentation\n---------------------\nSee `keyword documentation`_ for available keywords and more information\nabout the library in general.\n\nInstallation\n------------\n\nThe recommended installation method is using pip_::\n\n pip install --upgrade robotframework-seleniumlibrary\n\nRunning this command installs also the latest Selenium and Robot Framework\nversions, but you still need to install `browser drivers`_ separately.\nThe ``--upgrade`` option can be omitted when installing the library for the\nfirst time.\n\nThose migrating from Selenium2Library_ can install SeleniumLibrary so that\nit is exposed also as Selenium2Library::\n\n pip install --upgrade robotframework-selenium2library\n\nThe above command installs the normal SeleniumLibrary as well as a new\nSelenium2Library version that is just a thin wrapper to SeleniumLibrary.\nThat allows importing Selenium2Library in tests while migrating to\nSeleniumLibrary.\n\nTo install the last legacy Selenium2Library_ version, use this command instead::\n\n pip install robotframework-selenium2library==1.8.0\n\nWith resent versions of ``pip`` it is possible to install directly from the\nGitHub_ repository. To install latest source from the master branch, use\nthis command::\n\n pip install git+https://github.com/robotframework/SeleniumLibrary.git\n\nPlease note that installation will take some time, because ``pip`` will\nclone the SeleniumLibrary_ project to a temporary directory and then\nperform the installation.\n\nSee `Robot Framework installation instructions`_ for detailed information\nabout installing Python and Robot Framework itself. For more details about\nusing ``pip`` see `its own documentation `__.\n\nBrowser drivers\n---------------\n\nAfter installing the library, you still need to install browser and\noperating system specific browser drivers for all those browsers you\nwant to use in tests. These are the exact same drivers you need to use with\nSelenium also when not using SeleniumLibrary. More information about\ndrivers can be found from `Selenium documentation`__.\n\nThe general approach to install a browser driver is downloading a right\ndriver, such as ``chromedriver`` for Chrome, and placing it into\na directory that is in PATH__. Drivers for different browsers\ncan be found via Selenium documentation or by using your favorite\nsearch engine with a search term like ``selenium chrome browser driver``.\nNew browser driver versions are released to support features in\nnew browsers, fix bug, or otherwise, and you need to keep an eye on them\nto know when to update drivers you use.\n\nAlternatively, you can use a tool called WebdriverManager__ which can\nfind the latest version or when required, any version of appropriate\nwebdrivers for you and then download and link/copy it into right\nlocation. Tool can run on all major operating systems and supports\ndownloading of Chrome, Firefox, Opera & Edge webdrivers.\n\nHere's an example:\n\n.. code:: bash\n\n pip install webdrivermanager\n webdrivermanager firefox chrome --linkpath /usr/local/bin\n\n\n\n__ https://seleniumhq.github.io/selenium/docs/api/py/index.html#drivers\n__ https://en.wikipedia.org/wiki/PATH_(variable)\n__ https://github.com/omenia/webdrivermanager\n\nUsage\n-----\n\nTo use SeleniumLibrary in Robot Framework tests, the library needs to\nfirst be imported using the ``Library`` setting as any other library.\nThe library accepts some import time arguments, which are documented\nin the `keyword documentation`_ along with all the keywords provided\nby the library.\n\nWhen using Robot Framework, it is generally recommended to write as\neasy-to-understand tests as possible. The keywords provided by\nSeleniumLibrary are pretty low level, though, and often require\nimplementation specific arguments like element locators to be passed\nas arguments. It is thus typically a good idea to write tests using\nRobot Framework's higher level keywords that utilize SeleniumLibrary\nkeywords internally. This is illustrated by the following example\nwhere SeleniumLibrary keywords like ``Input Text`` are primarily\nused by higher level keywords like ``Input Username``.\n\n.. code:: robotframework\n\n *** Settings ***\n Documentation Simple example using SeleniumLibrary.\n Library SeleniumLibrary\n\n *** Variables ***\n ${LOGIN URL} http://localhost:7272\n ${BROWSER} Chrome\n\n *** Test Cases ***\n Valid Login\n Open Browser To Login Page\n Input Username demo\n Input Password mode\n Submit Credentials\n Welcome Page Should Be Open\n [Teardown] Close Browser\n\n *** Keywords ***\n Open Browser To Login Page\n Open Browser ${LOGIN URL} ${BROWSER}\n Title Should Be Login Page\n\n Input Username\n [Arguments] ${username}\n Input Text username_field ${username}\n\n Input Password\n [Arguments] ${password}\n Input Text password_field ${password}\n\n Submit Credentials\n Click Button login_button\n\n Welcome Page Should Be Open\n Title Should Be Welcome Page\n\n\nThe above example is a slightly modified version of an example in a\n`demo project`_ that illustrates using Robot Framework and SeleniumLibrary.\nSee the demo for more examples that you can also execute on your own\nmachine. For more information about Robot Framework test data syntax in\ngeneral see the `Robot Framework User Guide`_.\n\nExtending SeleniumLibrary\n-------------------------\nBefore creating your own library which extends the ``SeleniumLibrary``, please consider would\nthe extension be also useful also for general usage. If it could be useful also for general\nusage, please create a new issue describing the enhancement request and even better if the\nissue is backed up by a pull request.\n\nIf the enhancement is not generally useful, example solution is domain specific, then the\nSeleniumLibrary offers a public API's which can be used to build own plugins and libraries.\nPlugin API allows to add new keywords, modify existing keywords and modify internal\nfunctionality of the library. Also new libraries can be build on top of the\nSeleniumLibrary. Please see `extending documentation`_ for more details about the\navailable methods and for examples how the library can be extended.\n\nSupport\n-------\n\nIf the provided documentation is not enough, there are various support forums\navailable:\n\n- `robotframework-users`_ mailing list\n- ``#seleniumlibrary`` and ``#seleniumlibrary-dev`` channels in\n Robot Framework `Slack community`_\n- SeleniumLibrary `issue tracker`_ for bug reports and concrete enhancement\n requests\n- `Other support forums`_ including paid support\n\nVersions\n--------\n\nSeleniumLibrary has over the years lived under SeleniumLibrary and\nSelenium2Library names and different library versions have supported\ndifferent Selenium and Python versions. This is summarized in the table\nbelow and the History_ section afterwards explains the project history\na bit more.\n\n================================== ========================== ========================== ===============\n Project Selenium Version Python Version Comment\n================================== ========================== ========================== ===============\nSeleniumLibrary 2.9.2 and earlier Selenium 1 and 2 Python 2.5-2.7 The original SeleniumLibrary using Selenium RC API.\nSelenium2Library 1.8.0 and earlier Selenium 2 and 3 Python 2.6-2.7 Fork of SeleniumLibrary using Selenium WebDriver API.\nSeleniumLibrary 3.0 and 3.1 Selenium 2 and 3 Python 2.7 and 3.3+ Selenium2Library renamed and with Python 3 support and new architecture.\nSeleniumLibrary 3.2 Selenium 3 Python 2.7 and 3.4+ Drops Selenium 2 support.\nSeleniumLibrary 4.0 Selenium 3 Python 2.7 and 3.4+ Plugin API and support for event friging webdriver.\nSeleniumLibrary 4.1 Selenium 3 Python 2.7 and 3.5+ Drops Python 3.4 support.\nSelenium2Library 3.0 Depends on SeleniumLibrary Depends on SeleniumLibrary Thin wrapper for SeleniumLibrary 3.0 to ease transition.\n================================== ========================== ========================== ===============\n\nHistory\n-------\n\nSeleniumLibrary originally used the Selenium Remote Controller (RC) API.\nWhen Selenium 2 was introduced with the new but backwards incompatible\nWebDriver API, SeleniumLibrary kept using Selenium RC and separate\nSelenium2Library using WebDriver was forked. These projects contained\nmostly the same keywords and in most cases Selenium2Library was a drop-in\nreplacement for SeleniumLibrary.\n\nOver the years development of the old SeleniumLibrary stopped and also\nthe Selenium RC API it used was deprecated. Selenium2Library was developed\nfurther and replaced the old library as the de facto web testing library\nfor Robot Framework.\n\nWhen Selenium 3 was released in 2016, it was otherwise backwards compatible\nwith Selenium 2, but the deprecated Selenium RC API was removed. This had two\nimportant effects:\n\n- The old SeleniumLibrary could not anymore be used with new Selenium versions.\n This project was pretty much dead.\n- Selenium2Library was badly named as it supported Selenium 3 just fine.\n This project needed a new name.\n\nAt the same time when Selenium 3 was released, Selenium2Library was going\nthrough larger architecture changes in order to ease future maintenance and\nto make adding Python 3 support easier. With all these big internal and\nexternal changes, it made sense to rename Selenium2Library back to\nSeleniumLibrary. This decision basically meant following changes:\n\n- Create separate repository for the `old SeleniumLibrary`_ to preserve\n its history since Selenium2Library was forked.\n- Rename Selenium2Library project and the library itself to SeleniumLibrary_.\n- Add new Selenium2Library_ project to ease transitioning from Selenium2Library\n to SeleniumLibrary.\n\nGoing forward, all new development will happen in the new SeleniumLibrary\nproject.\n\n.. _Robot Framework: https://robotframework.org\n.. _Selenium: https://seleniumhq.org\n.. _SeleniumLibrary: https://github.com/robotframework/SeleniumLibrary\n.. _Selenium2Library: https://github.com/robotframework/Selenium2Library\n.. _Old SeleniumLibrary: https://github.com/robotframework/OldSeleniumLibrary\n.. _pip: http://pip-installer.org\n.. _PyPI: https://pypi.python.org/pypi/robotframework-seleniumlibrary\n.. _GitHub: https://github.com/robotframework/SeleniumLibrary\n.. _Keyword Documentation: https://robotframework.org/SeleniumLibrary/SeleniumLibrary.html\n.. _Python: https://python.org\n.. _PyPy: https://pypy.org\n.. _Jython: https://jython.org/\n.. _IronPython: https://ironpython.net/\n.. _demo project: https://github.com/robotframework/WebDemo\n.. _Robot Framework User Guide: https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html\n.. _Robot Framework installation instructions: https://github.com/robotframework/robotframework/blob/master/INSTALL.rst\n.. _robotframework-users: https://groups.google.com/group/robotframework-users\n.. _extending documentation: https://github.com/robotframework/SeleniumLibrary/blob/master/docs/extending/extending.rst\n.. _Slack community: https://robotframework-slack-invite.herokuapp.com\n.. _issue tracker: https://github.com/robotframework/SeleniumLibrary/issues\n.. _Other support forums: https://robotframework.org/#support\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/robotframework/SeleniumLibrary", "keywords": "robotframework testing testautomation selenium webdriver web", "license": "Apache License 2.0", "maintainer": "", "maintainer_email": "", "name": "robotframework-seleniumlibrary", "package_url": "https://pypi.org/project/robotframework-seleniumlibrary/", "platform": "any", "project_url": "https://pypi.org/project/robotframework-seleniumlibrary/", "project_urls": { "Homepage": "https://github.com/robotframework/SeleniumLibrary" }, "release_url": "https://pypi.org/project/robotframework-seleniumlibrary/4.1.0/", "requires_dist": [ "selenium (>=3.8.1)", "robotframework (>=3.0.4)" ], "requires_python": ">=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "summary": "Web testing library for Robot Framework", "version": "4.1.0" }, "last_serial": 6002732, "releases": { "2.7": [], "2.8": [], "2.8.1": [], "2.9": [], "2.9.1": [], "2.9.2": [ { "comment_text": "", "digests": { "md5": "0183ed08e7d9d1143d712ae47603cc7b", "sha256": "98e5335e4a24410c858c46cb14b244b1455f2f997166d9c6150a0504b902a352" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-2.9.2.tar.gz", "has_sig": false, "md5_digest": "0183ed08e7d9d1143d712ae47603cc7b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29209995, "upload_time": "2015-09-02T12:58:13", "url": "https://files.pythonhosted.org/packages/1b/d6/8ce30e4a10252699077a39398fa123718a1343aeceb67de16ca1751e904f/robotframework-seleniumlibrary-2.9.2.tar.gz" }, { "comment_text": "Windows installer for 32 bit Python", "digests": { "md5": "7327ff91b46167463788f3b5b26e1b91", "sha256": "388ce219a49ebcc7a9b7fc1e7459f96bd639313204b220220d38b499e3ff4802" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-2.9.2.win32.exe", "has_sig": false, "md5_digest": "7327ff91b46167463788f3b5b26e1b91", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 29447455, "upload_time": "2015-09-02T13:02:35", "url": "https://files.pythonhosted.org/packages/c8/63/a2ea2c69ac38ebf9fe412d4a0d26ab5e3a1550fd499929f638382106834b/robotframework-seleniumlibrary-2.9.2.win32.exe" }, { "comment_text": "Windows installer for 64 bit Python", "digests": { "md5": "0f2546e853b919d075838322fedba328", "sha256": "aef68cd36749a2884f299445aa8f3e1de467164290334db90292bde510fd4cd2" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-2.9.2.win-amd64.exe", "has_sig": false, "md5_digest": "0f2546e853b919d075838322fedba328", "packagetype": "bdist_wininst", "python_version": "any", "requires_python": null, "size": 29475103, "upload_time": "2015-09-02T13:11:00", "url": "https://files.pythonhosted.org/packages/ab/62/d6a5515a5ef608a1d2eb9e542bbaf86252a9394df5b6c73bac5b96656b96/robotframework-seleniumlibrary-2.9.2.win-amd64.exe" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "7eac951a27f89ddc9b2491629763a770", "sha256": "68c636fb4add9881aef26c30cc07962bdc22119aa696ea437ecbe3cc305e1a12" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7eac951a27f89ddc9b2491629763a770", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 76138, "upload_time": "2017-12-01T06:17:46", "url": "https://files.pythonhosted.org/packages/13/ce/ffc318ff066535c4b917f1e2874eaa6c4d62b50594b703c4016f04698906/robotframework_seleniumlibrary-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c724a98856afa3adcb318f2ba6f36102", "sha256": "d47c772d28c19b81908ae8fe62c8e8fe358283fef98187705ac0d5d71cdf8ccd" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.0.0.tar.gz", "has_sig": false, "md5_digest": "c724a98856afa3adcb318f2ba6f36102", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121561, "upload_time": "2017-12-01T06:17:51", "url": "https://files.pythonhosted.org/packages/31/a8/21d3c48f846a570de9cb3b98e7fdc8a59dafe134cf80de3f528f0702a7cf/robotframework-seleniumlibrary-3.0.0.tar.gz" } ], "3.0.0a1": [], "3.0.0a2": [ { "comment_text": "", "digests": { "md5": "7aab2b072565aa1d654c602f68904ad5", "sha256": "894253bcd1b34214251ca7ebd232eed34303aeb2c54ebdbd1faca96ab269c061" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.0.0a2.tar.gz", "has_sig": false, "md5_digest": "7aab2b072565aa1d654c602f68904ad5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117083, "upload_time": "2017-08-25T12:14:30", "url": "https://files.pythonhosted.org/packages/fc/5c/44d5137ebf46e26c7354aa9da7769a18622f690cadfb101a41bb782c00cb/robotframework-seleniumlibrary-3.0.0a2.tar.gz" } ], "3.0.0b1": [ { "comment_text": "", "digests": { "md5": "2d9b7a757f65e5b70ae850e5aa739340", "sha256": "b5449d0e0a44141c2216cdb68c4b7e12a9c2efcc4e2dda48c5c501eb3fdf3dc8" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.0.0b1.tar.gz", "has_sig": false, "md5_digest": "2d9b7a757f65e5b70ae850e5aa739340", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190888, "upload_time": "2017-09-01T18:39:07", "url": "https://files.pythonhosted.org/packages/c9/52/cd72b68fb2c468494f3279ec628cb87d859d56c8beec33559a3b2e0869bc/robotframework-seleniumlibrary-3.0.0b1.tar.gz" } ], "3.0.0b3": [ { "comment_text": "", "digests": { "md5": "60c39ad5ac65473d6b802f77c33f1234", "sha256": "0a6ef4076873dabd79ac1fcb55c193e8f1e8ee6fb76fcefbfad82e7cb6ab3019" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.0.0b3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "60c39ad5ac65473d6b802f77c33f1234", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 72781, "upload_time": "2017-09-28T20:55:44", "url": "https://files.pythonhosted.org/packages/84/2f/231627eafcae62bc0aa12ba27c65d7f5fcc61fe785f0a45eaaf06fd6494d/robotframework_seleniumlibrary-3.0.0b3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8d467064cca0466894b54016b127e044", "sha256": "2853ee8d586b10fd76435c58efa70c9f6ce9b764316f5692c0e6ae83b7c35c4e" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.0.0b3.tar.gz", "has_sig": false, "md5_digest": "8d467064cca0466894b54016b127e044", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 119790, "upload_time": "2017-09-28T20:55:48", "url": "https://files.pythonhosted.org/packages/21/bb/1c9f061922c5b54087def5d2175d7b0bd97be67e2e709c374a0e348dc26a/robotframework-seleniumlibrary-3.0.0b3.tar.gz" } ], "3.0.0rc1": [ { "comment_text": "", "digests": { "md5": "b7885c20a03826753c109405c9e6b5c3", "sha256": "66cde150a026550e2c930ce4c5a5b48d3ef47496f45bdef292d1cf5098f3069c" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.0.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b7885c20a03826753c109405c9e6b5c3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 76096, "upload_time": "2017-11-15T22:04:21", "url": "https://files.pythonhosted.org/packages/d8/2d/2aa9a855c0cdf39293d0c069828191fe524226c63ca46f11ff0f551bd8b8/robotframework_seleniumlibrary-3.0.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1283d077aed4c8883fdea9b12ab389d3", "sha256": "e3dc6133fd3830bbc8f9c6b1391f91864382b0bc4b718b8ac9b22ec0f59f4ae5" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "1283d077aed4c8883fdea9b12ab389d3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121479, "upload_time": "2017-11-15T22:04:24", "url": "https://files.pythonhosted.org/packages/2d/10/b22dd4ff4d37b9e70cc8ee74066d52e932c207ebd63762fbcf2b91f30d10/robotframework-seleniumlibrary-3.0.0rc1.tar.gz" } ], "3.0.0rc2": [ { "comment_text": "", "digests": { "md5": "aa5d9f959f135e9c9ab7fc8514f2bca4", "sha256": "60d7a7effc4c14a15b5609eb3f48e801ed414cc4d90dc9bdc4e935a6c28baf56" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.0.0rc2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "aa5d9f959f135e9c9ab7fc8514f2bca4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 76185, "upload_time": "2017-11-28T20:57:44", "url": "https://files.pythonhosted.org/packages/b3/c2/5d24776cbf451125d8f6a33568185cc34b81cde3305b54a812f5473de770/robotframework_seleniumlibrary-3.0.0rc2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cba99fe32d1a0e12d9a359367784b4cb", "sha256": "fd45f6f4558e4528debf3198c0d364d678da43f66c239714c714d955701b3363" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.0.0rc2.tar.gz", "has_sig": false, "md5_digest": "cba99fe32d1a0e12d9a359367784b4cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121575, "upload_time": "2017-11-28T20:57:49", "url": "https://files.pythonhosted.org/packages/8e/e2/54ddf079159b66b1c9e3aab1528cf9b876519295a0a3da8f65a609a007c6/robotframework-seleniumlibrary-3.0.0rc2.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "647466ba1e1e46c226b6e90f9a8aef8f", "sha256": "e177ca6ade2285f02d90e8c6a675be5f595647f6aa6104e8947957bc25413b76" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "647466ba1e1e46c226b6e90f9a8aef8f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 75962, "upload_time": "2017-12-09T22:15:17", "url": "https://files.pythonhosted.org/packages/22/aa/75de2db3cee03b8ba83bfd589ca9cb98b9f5ff8fdde854f434249ced8686/robotframework_seleniumlibrary-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69d81bc8427527523fda2a4bd1e9e5b6", "sha256": "17dde4c0ee97453127bdc52bfcbce8c462f643155476f75c64049d34a4b06a2e" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.0.1.tar.gz", "has_sig": false, "md5_digest": "69d81bc8427527523fda2a4bd1e9e5b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121381, "upload_time": "2017-12-09T22:15:19", "url": "https://files.pythonhosted.org/packages/19/24/8c2259193aa8a6ca919623e2313ac5ae8d85152795c6772c1d303cd13768/robotframework-seleniumlibrary-3.0.1.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "d02bc546badcb0df8a15caf963198fc9", "sha256": "526c96102225ffb7c4d372b6fa6d31030b28443fe6275b00d4354fb20d2ed9f3" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d02bc546badcb0df8a15caf963198fc9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77117, "upload_time": "2018-02-15T20:31:03", "url": "https://files.pythonhosted.org/packages/55/7a/279c9a609c1e36679e7ae7d9c59dcc1f9942e2d8536985f8e8a853cfb387/robotframework_seleniumlibrary-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "788dcd41f7be21bc5e243f315d29d13e", "sha256": "ec1eb484ecd4019ee309f58ed5a107b7e6a73833d396021c3d5fec657723147f" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.1.0.tar.gz", "has_sig": false, "md5_digest": "788dcd41f7be21bc5e243f315d29d13e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123216, "upload_time": "2018-02-15T20:31:08", "url": "https://files.pythonhosted.org/packages/20/14/6701c56e664bcd87579e17c3c05bfd74314238d285412c894d4dcf813537/robotframework-seleniumlibrary-3.1.0.tar.gz" } ], "3.1.0a1": [ { "comment_text": "", "digests": { "md5": "d4e66c358ba68929c255e28619d950ff", "sha256": "de0fdce24641f8bc0197f69c5b990098e667365f73a9d07363ea3072718fc9ce" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.1.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d4e66c358ba68929c255e28619d950ff", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 76969, "upload_time": "2018-02-11T21:48:08", "url": "https://files.pythonhosted.org/packages/24/8e/c567fb92d92de7151891fe7dff3acc6372008ff7a2c8d4c206d4920f0378/robotframework_seleniumlibrary-3.1.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "230e0d5b365b9c02df105629c04603e9", "sha256": "dc00df3c36a4e8e7ba894846082486cec790f5b9cc71c90c4851cdbc432612f8" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.1.0a1.tar.gz", "has_sig": false, "md5_digest": "230e0d5b365b9c02df105629c04603e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122484, "upload_time": "2018-02-11T21:48:12", "url": "https://files.pythonhosted.org/packages/24/00/b35ad5d4562ac121aac68995984943616c0537062291cbb7fd80065cfdf4/robotframework-seleniumlibrary-3.1.0a1.tar.gz" } ], "3.1.0a2": [ { "comment_text": "", "digests": { "md5": "5f7e86697ac39500bfdb44a4662cacb1", "sha256": "4276b4eeaa3b84f2060271e5315446e1e7d17084fc006fb4bf3e421abaa74c98" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.1.0a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5f7e86697ac39500bfdb44a4662cacb1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77150, "upload_time": "2018-02-13T20:31:55", "url": "https://files.pythonhosted.org/packages/c6/25/02f35a2decafe1c682bf94eee6a3df7e444e3a36fb3c46723b75c8af8a06/robotframework_seleniumlibrary-3.1.0a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "201331418e233486bace0a5c9d2a82e4", "sha256": "21458bc0e1e0a6fe29f5bb7f592634217f77c7d0dcf5c8eb9ffaa2c4043ae862" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.1.0a2.tar.gz", "has_sig": false, "md5_digest": "201331418e233486bace0a5c9d2a82e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123239, "upload_time": "2018-02-13T20:31:58", "url": "https://files.pythonhosted.org/packages/d4/29/f0eb40f01d579ad46673edf1c33c25d4f5e2966637ead62f498f207e638e/robotframework-seleniumlibrary-3.1.0a2.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "0e5db97089d6a84850ceaabd8f8b439c", "sha256": "f99192022dd61afbaa4f2cecb011e595b6c3a9fc8aca3bd6a6bee6d485e7cc92" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.1.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0e5db97089d6a84850ceaabd8f8b439c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 77221, "upload_time": "2018-03-06T20:43:19", "url": "https://files.pythonhosted.org/packages/35/06/bac4b9dad29f4c59bb0c1d781c995940f4a39a964d5e0ea882e69c58495e/robotframework_seleniumlibrary-3.1.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "54ea6c19e1cbf9f4c13623eac06b970e", "sha256": "d29213ff38a22352cf983f36c581be76428d899e5e390890acafe13ac278824c" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.1.1.tar.gz", "has_sig": false, "md5_digest": "54ea6c19e1cbf9f4c13623eac06b970e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123411, "upload_time": "2018-03-06T20:43:23", "url": "https://files.pythonhosted.org/packages/66/ac/eead7e76d9bd70da601442809268f984cd03f9cb708fed9e087fbc7c7412/robotframework-seleniumlibrary-3.1.1.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "e318c4254722039244132f141a07197c", "sha256": "8a53ec6bc2f2969dbec9904400b539c4323bf6620da23dd17527928385a53466" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e318c4254722039244132f141a07197c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 79345, "upload_time": "2018-09-21T18:27:54", "url": "https://files.pythonhosted.org/packages/74/e9/19f4f96e1f35ed34e5f9d06d8285f981d2b8c5e7efa23d5c201c4650d732/robotframework_seleniumlibrary-3.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "082df751093b6ae958335e71a39ebefc", "sha256": "113ee01aa4fbfd322d4816e5704c0187ffcf6a047ea012a66d305f250ab485db" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.2.0.tar.gz", "has_sig": false, "md5_digest": "082df751093b6ae958335e71a39ebefc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126317, "upload_time": "2018-09-21T18:27:55", "url": "https://files.pythonhosted.org/packages/e9/15/03f51c0ee6285dbf9ebdca176dd2bac6dfbc9cf5a2f54201c9fcdab4a078/robotframework-seleniumlibrary-3.2.0.tar.gz" } ], "3.2.0rc1": [ { "comment_text": "", "digests": { "md5": "a7e0f75bf7cae03bf0574995b97a6e32", "sha256": "a48061f67dbd298c12b1985953225e34e7d9f446aa592c178ae35dba9ed011bb" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.2.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a7e0f75bf7cae03bf0574995b97a6e32", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 79391, "upload_time": "2018-09-16T20:23:36", "url": "https://files.pythonhosted.org/packages/a1/ae/61e99a6f5f2263e276957edebf98c96b2cc18ab72a8f23e9e9d0ab22cdc2/robotframework_seleniumlibrary-3.2.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d4665104a8369e04fc2325bdf95ee452", "sha256": "163e9398294fc3d27273ccd6ad77699c0dd258cbc2401572db70aba5443b0ccd" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.2.0rc1.tar.gz", "has_sig": false, "md5_digest": "d4665104a8369e04fc2325bdf95ee452", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126324, "upload_time": "2018-09-16T20:23:38", "url": "https://files.pythonhosted.org/packages/d3/c4/3b7eafdc55ddcd48cfac805adbe18a339239ac142cf871ecc7d87b612927/robotframework-seleniumlibrary-3.2.0rc1.tar.gz" } ], "3.3.0": [ { "comment_text": "", "digests": { "md5": "3987781fefbc28a1135916fea54e407c", "sha256": "451eebaf96e7b7d930b31104083c548a31b1b8bdfe46477cd030a3d3ecd96ac0" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3987781fefbc28a1135916fea54e407c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 81595, "upload_time": "2018-12-23T23:54:23", "url": "https://files.pythonhosted.org/packages/26/98/66e450b110d79f07eb1e26ebfe19f7da8270accf4a257c8b698385364cca/robotframework_seleniumlibrary-3.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "295fe727803fadc854e1ef7dcc4d4c4f", "sha256": "aad9985cc4e04549fd8faee012eed8fc6eaab11abd6dd984673fb12975aa38fb" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.3.0.tar.gz", "has_sig": false, "md5_digest": "295fe727803fadc854e1ef7dcc4d4c4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127358, "upload_time": "2018-12-23T23:54:26", "url": "https://files.pythonhosted.org/packages/ec/44/d6efee0ea0bff85cf5618327184f8342659d338f98e8f71e0deb04542f95/robotframework-seleniumlibrary-3.3.0.tar.gz" } ], "3.3.1": [ { "comment_text": "", "digests": { "md5": "ba1994c22106f6fbefb28c12bee654be", "sha256": "f4c39ca0128e4774368ca59debf05991c218ef6cff9f726dd13c0738861f7a5c" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-3.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ba1994c22106f6fbefb28c12bee654be", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 81756, "upload_time": "2019-01-04T21:56:06", "url": "https://files.pythonhosted.org/packages/ff/15/6961c801eeec7f062973509958b33f158bbc505d45ee6c20b2966275ef51/robotframework_seleniumlibrary-3.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e25c23b45792bc6d281c697bfbcad738", "sha256": "6f3a0eba3f0a4f9b10d3271420f4430cc9e8230cc25e3deaa469d533d872a10f" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-3.3.1.tar.gz", "has_sig": false, "md5_digest": "e25c23b45792bc6d281c697bfbcad738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127388, "upload_time": "2019-01-04T21:56:08", "url": "https://files.pythonhosted.org/packages/c8/e7/c577d9528b80d748fe7beca1b106d751caf39d0d77f8fd85e39b1ef50ded/robotframework-seleniumlibrary-3.3.1.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "2a4836f587c6cb61fde71d437f1c878e", "sha256": "a302e493ab6975d9d3886d20ce67399d4ed4712260cee075655a29584bb60906" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a4836f587c6cb61fde71d437f1c878e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 89694, "upload_time": "2019-09-20T19:55:30", "url": "https://files.pythonhosted.org/packages/92/9c/130e489c887406527730780795f69f446bc3d8393452b15d526f4084c5f0/robotframework_seleniumlibrary-4.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8daa7b419f2e8af5e3a3c94ec65f3cb2", "sha256": "fd601ce4937b4ceb77323a4ee658791dec2f85a6d21c7143d00515db68afb64a" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.0.0.tar.gz", "has_sig": false, "md5_digest": "8daa7b419f2e8af5e3a3c94ec65f3cb2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139857, "upload_time": "2019-09-20T19:55:33", "url": "https://files.pythonhosted.org/packages/75/b7/041bd342a2a951e29e876c0c11279d98b3915c14f7d0ba109e713ce7527b/robotframework-seleniumlibrary-4.0.0.tar.gz" } ], "4.0.0a1": [ { "comment_text": "", "digests": { "md5": "2a44bc8746e6ab720d1c60095b58e28d", "sha256": "0628cba615bd61df0d9547cab0e88ca658a0e13232f5944d1bfd21da15bf34da" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.0.0a1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2a44bc8746e6ab720d1c60095b58e28d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 82133, "upload_time": "2019-04-18T19:38:11", "url": "https://files.pythonhosted.org/packages/f8/1f/2316d30550c719a7d4dedce8f56fecac2dbafd5087a183d9666e66b69ecf/robotframework_seleniumlibrary-4.0.0a1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01cfe3168972749805ef596d1b8e4810", "sha256": "0361515f061ad7d7e0854a142c264bec9a56211ad3247b078f0074c01ea73821" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.0.0a1.tar.gz", "has_sig": false, "md5_digest": "01cfe3168972749805ef596d1b8e4810", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128543, "upload_time": "2019-04-18T19:38:13", "url": "https://files.pythonhosted.org/packages/31/34/65ee97a0cc2b339b9aeb561cbc978471b69925d9ef517d6debf5460fccb6/robotframework-seleniumlibrary-4.0.0a1.tar.gz" } ], "4.0.0a2": [ { "comment_text": "", "digests": { "md5": "728a279ce4ae2a197d0c24d8a2f16e98", "sha256": "312063e49487eda7ee65727e3d7b66b0787b1f8da562f3aa41639ac7148c174c" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.0.0a2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "728a279ce4ae2a197d0c24d8a2f16e98", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 83741, "upload_time": "2019-07-04T19:06:01", "url": "https://files.pythonhosted.org/packages/a7/80/e097d38c2a9a98464a06c339e9e3ed4909d9c66ac784c600384f7075a308/robotframework_seleniumlibrary-4.0.0a2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "538420fa90d13458c698f3a103c79ace", "sha256": "9759bdb6f2ba720a26129760b9ae42ea2879bff18523eb23c32edfad916bf9b0" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.0.0a2.tar.gz", "has_sig": false, "md5_digest": "538420fa90d13458c698f3a103c79ace", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 133188, "upload_time": "2019-07-04T19:06:03", "url": "https://files.pythonhosted.org/packages/0b/bc/03b19c27c0276e5d50dff7ab5471b828f36b1989be3bfef373283bc48931/robotframework-seleniumlibrary-4.0.0a2.tar.gz" } ], "4.0.0b1": [ { "comment_text": "", "digests": { "md5": "1b1c941aae0e33273b2d031cbf0dce78", "sha256": "bc2fcedf94c62a28ce7ab82def83b6ac5e5099e02d03fa000a2c7e80f5c02a83" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.0.0b1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1b1c941aae0e33273b2d031cbf0dce78", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 88918, "upload_time": "2019-08-22T19:09:10", "url": "https://files.pythonhosted.org/packages/7f/26/2788c62b70bf2c2f735ec2c875eee7ad060845a4342aec179f58035a42a7/robotframework_seleniumlibrary-4.0.0b1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2a6f4f4b1c62aa27a0ecfed58127a960", "sha256": "011c8097afca8dbcc80f31bc94815bfb38ecfbec63f281b020fedf305b460c6f" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.0.0b1.tar.gz", "has_sig": false, "md5_digest": "2a6f4f4b1c62aa27a0ecfed58127a960", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 138552, "upload_time": "2019-08-22T19:09:12", "url": "https://files.pythonhosted.org/packages/53/4a/516c10bf6a28d07c7df267f0058c190409f04d3bf0bbfafac5365e2542f0/robotframework-seleniumlibrary-4.0.0b1.tar.gz" } ], "4.0.0rc1": [ { "comment_text": "", "digests": { "md5": "6ab04d5d656094d000ca2a1887c06ea5", "sha256": "349dec087c51f5d0663cec511da8ab38793942242a6f1c8cad1d79720931548b" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.0.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6ab04d5d656094d000ca2a1887c06ea5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 89631, "upload_time": "2019-09-07T22:04:19", "url": "https://files.pythonhosted.org/packages/64/42/dec613abf519062baf54c65af42606c6a3c682496ee790bb1095c86b74b6/robotframework_seleniumlibrary-4.0.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7480996ab3732c3d2abdd529915fcb39", "sha256": "d737eac60ff83928f8b1ccf1b0e28d73b1a25944b8c530cdde4f35a33545c898" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "7480996ab3732c3d2abdd529915fcb39", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 139820, "upload_time": "2019-09-07T22:04:21", "url": "https://files.pythonhosted.org/packages/76/2c/e6434421b35b0bfa264af00ebdbee903023f56a392903aadf4882a4b4235/robotframework-seleniumlibrary-4.0.0rc1.tar.gz" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "7b2e06dc7578fc47c884c86a1ac8b653", "sha256": "1c57c0a4705aca20fc1404ebe1c21d2da12f4aaeeffd7d3d8a698032d39443cf" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b2e06dc7578fc47c884c86a1ac8b653", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 90058, "upload_time": "2019-10-20T12:05:58", "url": "https://files.pythonhosted.org/packages/dc/69/c20102b9e336b32eb813966ee2b98b6de1b1249032ebb3ce3cabcf26fac7/robotframework_seleniumlibrary-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2fdaeb625a1c325f80a77154a5d25df9", "sha256": "f45cf8d52265a416cb7f2568ca6201068f178eff9050fab01adde14bb8633314" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.1.0.tar.gz", "has_sig": false, "md5_digest": "2fdaeb625a1c325f80a77154a5d25df9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 141238, "upload_time": "2019-10-20T12:06:01", "url": "https://files.pythonhosted.org/packages/53/e3/6c2f98c64583f275fa79e0f504b90ccda06dbab3d607731e9dc295170557/robotframework-seleniumlibrary-4.1.0.tar.gz" } ], "4.1.0rc1": [ { "comment_text": "", "digests": { "md5": "729aabb984be6c233ed27b3a54dbd9ea", "sha256": "94ce6994e8b6cb456da0c0dd16a3a579372930c86ac838de6c52e2c9e22d4e44" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.1.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "729aabb984be6c233ed27b3a54dbd9ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 90094, "upload_time": "2019-10-13T17:52:42", "url": "https://files.pythonhosted.org/packages/11/8c/823907336e891a14c11e2102c54884c5744ba02d6858abe0b21558ed2eab/robotframework_seleniumlibrary-4.1.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f01805b8e83e0a9dc0778a559b902472", "sha256": "a78f3432d882e1ebbfe2f328c47de42d5509321a64f0730b993721631fb1652f" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.1.0rc1.tar.gz", "has_sig": false, "md5_digest": "f01805b8e83e0a9dc0778a559b902472", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 141384, "upload_time": "2019-10-13T17:52:44", "url": "https://files.pythonhosted.org/packages/f7/37/469ac427990f2c942a321578454b53514154fbe27cc4095702f743f55a0d/robotframework-seleniumlibrary-4.1.0rc1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "7b2e06dc7578fc47c884c86a1ac8b653", "sha256": "1c57c0a4705aca20fc1404ebe1c21d2da12f4aaeeffd7d3d8a698032d39443cf" }, "downloads": -1, "filename": "robotframework_seleniumlibrary-4.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7b2e06dc7578fc47c884c86a1ac8b653", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 90058, "upload_time": "2019-10-20T12:05:58", "url": "https://files.pythonhosted.org/packages/dc/69/c20102b9e336b32eb813966ee2b98b6de1b1249032ebb3ce3cabcf26fac7/robotframework_seleniumlibrary-4.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2fdaeb625a1c325f80a77154a5d25df9", "sha256": "f45cf8d52265a416cb7f2568ca6201068f178eff9050fab01adde14bb8633314" }, "downloads": -1, "filename": "robotframework-seleniumlibrary-4.1.0.tar.gz", "has_sig": false, "md5_digest": "2fdaeb625a1c325f80a77154a5d25df9", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4", "size": 141238, "upload_time": "2019-10-20T12:06:01", "url": "https://files.pythonhosted.org/packages/53/e3/6c2f98c64583f275fa79e0f504b90ccda06dbab3d607731e9dc295170557/robotframework-seleniumlibrary-4.1.0.tar.gz" } ] }