robotframework-seleniumlibrary


Namerobotframework-seleniumlibrary JSON
Version 6.3.0 PyPI version JSON
download
home_pagehttps://github.com/robotframework/SeleniumLibrary
SummaryWeb testing library for Robot Framework
upload_time2024-04-19 13:18:14
maintainerNone
docs_urlNone
authorEd Manlove, Yuri Verweij, Lisa Crispin
requires_python<4,>=3.6
licenseApache License 2.0
keywords robotframework testing testautomation selenium webdriver web
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            SeleniumLibrary
===============

.. contents::

Introduction
------------

SeleniumLibrary_ is a web testing library for `Robot Framework`_ that
utilizes the Selenium_ tool internally. The project is hosted on GitHub_
and downloads can be found from PyPI_.

SeleniumLibrary works with Selenium 3 and 4. It supports Python 3.6 or
newer. In addition to the normal Python_ interpreter, it works also
with PyPy_.

SeleniumLibrary is based on the `old SeleniumLibrary`_ that was forked to
Selenium2Library_ and then later renamed back to SeleniumLibrary.
See the Versions_ and History_ sections below for more information about
different versions and the overall project history.

.. image:: https://img.shields.io/pypi/v/robotframework-seleniumlibrary.svg?label=version
   :target: https://pypi.python.org/pypi/robotframework-seleniumlibrary
   
.. image:: https://img.shields.io/pypi/dm/robotframework-seleniumlibrary.svg
   :target: https://pypi.python.org/pypi/robotframework-seleniumlibrary

.. image:: https://img.shields.io/pypi/l/robotframework-seleniumlibrary.svg
   :target: https://www.apache.org/licenses/LICENSE-2.0

.. image:: https://github.com/robotframework/SeleniumLibrary/actions/workflows/CI.yml/badge.svg?branch=master
    :target: https://github.com/robotframework/SeleniumLibrary/actions/workflows/CI.yml

Keyword Documentation
---------------------
See `keyword documentation`_ for available keywords and more information
about the library in general.

Installation
------------

The recommended installation method is using pip_::

    pip install --upgrade robotframework-seleniumlibrary

Running this command installs also the latest Selenium and Robot Framework
versions, but you still need to install `browser drivers`_ separately.
The ``--upgrade`` option can be omitted when installing the library for the
first time.

Those migrating from Selenium2Library_ can install SeleniumLibrary so that
it is exposed also as Selenium2Library::

    pip install --upgrade robotframework-selenium2library

The above command installs the normal SeleniumLibrary as well as a new
Selenium2Library version that is just a thin wrapper to SeleniumLibrary.
That allows importing Selenium2Library in tests while migrating to
SeleniumLibrary.

To install the last legacy Selenium2Library_ version, use this command instead::

    pip install robotframework-selenium2library==1.8.0

With recent versions of ``pip`` it is possible to install directly from the
GitHub_ repository. To install latest source from the master branch, use
this command::

    pip install git+https://github.com/robotframework/SeleniumLibrary.git

Please note that installation will take some time, because ``pip`` will
clone the SeleniumLibrary_ project to a temporary directory and then
perform the installation.

See `Robot Framework installation instructions`_ for detailed information
about installing Python and Robot Framework itself. For more details about
using ``pip`` see `its own documentation <pip_>`__.

Browser drivers
---------------

After installing the library, you still need to install browser and
operating system specific browser drivers for all those browsers you
want to use in tests. These are the exact same drivers you need to use with
Selenium also when not using SeleniumLibrary. More information about
drivers can be found from `Selenium documentation`__.

The general approach to install a browser driver is downloading a right
driver, such as ``chromedriver`` for Chrome, and placing it into
a directory that is in PATH__. Drivers for different browsers
can be found via Selenium documentation or by using your favorite
search engine with a search term like ``selenium chrome browser driver``.
New browser driver versions are released to support features in
new browsers, fix bug, or otherwise, and you need to keep an eye on them
to know when to update drivers you use.

Alternatively, you can use a tool called WebdriverManager__ which can
find the latest version or when required, any version of appropriate
webdrivers for you and then download and link/copy it into right
location. Tool can run on all major operating systems and supports
downloading of Chrome, Firefox, Opera & Edge webdrivers.

Here's an example:

.. code:: bash

      pip install webdrivermanager
      webdrivermanager firefox chrome --linkpath /usr/local/bin



__ https://seleniumhq.github.io/selenium/docs/api/py/index.html#drivers
__ https://en.wikipedia.org/wiki/PATH_(variable)
__ https://github.com/omenia/webdrivermanager

Usage
-----

To use SeleniumLibrary in Robot Framework tests, the library needs to
first be imported using the ``Library`` setting as any other library.
The library accepts some import time arguments, which are documented
in the `keyword documentation`_ along with all the keywords provided
by the library.

When using Robot Framework, it is generally recommended to write as
easy-to-understand tests as possible. The keywords provided by
SeleniumLibrary is pretty low level, though, and often require
implementation-specific arguments like element locators to be passed
as arguments. It is thus typically a good idea to write tests using
Robot Framework's higher-level keywords that utilize SeleniumLibrary
keywords internally. This is illustrated by the following example
where SeleniumLibrary keywords like ``Input Text`` are primarily
used by higher-level keywords like ``Input Username``.

.. code:: robotframework

    *** Settings ***
    Documentation     Simple example using SeleniumLibrary.
    Library           SeleniumLibrary

    *** Variables ***
    ${LOGIN URL}      http://localhost:7272
    ${BROWSER}        Chrome

    *** Test Cases ***
    Valid Login
        Open Browser To Login Page
        Input Username    demo
        Input Password    mode
        Submit Credentials
        Welcome Page Should Be Open
        [Teardown]    Close Browser

    *** Keywords ***
    Open Browser To Login Page
        Open Browser    ${LOGIN URL}    ${BROWSER}
        Title Should Be    Login Page

    Input Username
        [Arguments]    ${username}
        Input Text    username_field    ${username}

    Input Password
        [Arguments]    ${password}
        Input Text    password_field    ${password}

    Submit Credentials
        Click Button    login_button

    Welcome Page Should Be Open
        Title Should Be    Welcome Page


The above example is a slightly modified version of an example in a
`demo project`_ that illustrates using Robot Framework and SeleniumLibrary.
See the demo for more examples that you can also execute on your own
machine. For more information about Robot Framework test data syntax in
general see the `Robot Framework User Guide`_.

Extending SeleniumLibrary
-------------------------
Before creating your own library which extends the ``SeleniumLibrary``, please consider would
the extension be also useful also for general usage. If it could be useful also for general
usage, please create a new issue describing the enhancement request and even better if the
issue is backed up by a pull request.

If the enhancement is not generally useful, example solution is domain specific, then the
SeleniumLibrary offers public APIs which can be used to build its own plugins and libraries.
Plugin API allows us to add new keywords, modify existing keywords and modify the internal
functionality of the library. Also new libraries can be built on top of the
SeleniumLibrary. Please see `extending documentation`_ for more details about the
available methods and for examples how the library can be extended.

Community
---------

If the provided documentation is not enough, there are various community channels
available:

- `robotframework-users`_ mailing list
- ``#seleniumlibrary`` and ``#seleniumlibrary-dev`` channels in
  Robot Framework `Slack community`_
- `Robot Framework forum`_ has channel for SeleniumLibrary.
- SeleniumLibrary `issue tracker`_ for bug reports and concrete enhancement
  requests
- `Other community channels`_ including paid support

Versions
--------

SeleniumLibrary has over the years lived under SeleniumLibrary and
Selenium2Library names and different library versions have supported
different Selenium and Python versions. This is summarized in the table
below and the History_ section afterwards explains the project history
a bit more.

==================================  ==========================  ==========================  ===============
             Project                     Selenium Version             Python Version         Comment
==================================  ==========================  ==========================  ===============
SeleniumLibrary 2.9.2 and earlier   Selenium 1 and 2            Python 2.5-2.7              The original SeleniumLibrary using Selenium RC API.
Selenium2Library 1.8.0 and earlier  Selenium 2 and 3            Python 2.6-2.7              Fork of SeleniumLibrary using Selenium WebDriver API.
SeleniumLibrary 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.
SeleniumLibrary 3.2                 Selenium 3                  Python 2.7 and 3.4+         Drops Selenium 2 support.
SeleniumLibrary 4.0                 Selenium 3                  Python 2.7 and 3.4+         Plugin API and support for event friging webdriver.
SeleniumLibrary 4.1                 Selenium 3                  Python 2.7 and 3.5+         Drops Python 3.4 support.
SeleniumLibrary 4.2                 Selenium 3                  Python 2.7 and 3.5+         Supports only Selenium 3.141.0 or newer.
SeleniumLibrary 4.4                 Selenium 3 and 4            Python 2.7 and 3.6+         New PythonLibCore and dropped Python 3.5 support.
SeleniumLibrary 5.0                 Selenium 3 and 4            Python 3.6+                 Python 2 and Jython support is dropped.
SeleniumLibrary 5.1                 Selenium 3 and 4            Python 3.6+                 Robot Framework 3.1 support is dropped.
Selenium2Library 3.0                Depends on SeleniumLibrary  Depends on SeleniumLibrary  Thin wrapper for SeleniumLibrary 3.0 to ease transition.
==================================  ==========================  ==========================  ===============

History
-------

SeleniumLibrary originally used the Selenium Remote Controller (RC) API.
When Selenium 2 was introduced with the new but backwards incompatible
WebDriver API, SeleniumLibrary kept using Selenium RC and separate
Selenium2Library using WebDriver was forked. These projects contained
mostly the same keywords and in most cases Selenium2Library was a drop-in
replacement for SeleniumLibrary.

Over the years development of the old SeleniumLibrary stopped and also
the Selenium RC API it used was deprecated. Selenium2Library was developed
further and replaced the old library as the de facto web testing library
for Robot Framework.

When Selenium 3 was released in 2016, it was otherwise backwards compatible
with Selenium 2, but the deprecated Selenium RC API was removed. This had two
important effects:

- The old SeleniumLibrary could not anymore be used with new Selenium versions.
  This project was pretty much dead.
- Selenium2Library was badly named as it supported Selenium 3 just fine.
  This project needed a new name.

At the same time when Selenium 3 was released, Selenium2Library was going
through larger architecture changes in order to ease future maintenance and
to make adding Python 3 support easier. With all these big internal and
external changes, it made sense to rename Selenium2Library back to
SeleniumLibrary. This decision basically meant following changes:

- Create separate repository for the `old SeleniumLibrary`_ to preserve
  its history since Selenium2Library was forked.
- Rename Selenium2Library project and the library itself to SeleniumLibrary_.
- Add new Selenium2Library_ project to ease transitioning from Selenium2Library
  to SeleniumLibrary.

Going forward, all new development will happen in the new SeleniumLibrary
project.

.. _Robot Framework: https://robotframework.org
.. _Selenium: https://www.seleniumhq.org/
.. _SeleniumLibrary: https://github.com/robotframework/SeleniumLibrary
.. _Selenium2Library: https://github.com/robotframework/Selenium2Library
.. _Old SeleniumLibrary: https://github.com/robotframework/OldSeleniumLibrary
.. _pip: http://pip-installer.org
.. _PyPI: https://pypi.python.org/pypi/robotframework-seleniumlibrary
.. _GitHub: https://github.com/robotframework/SeleniumLibrary
.. _Keyword Documentation: https://robotframework.org/SeleniumLibrary/SeleniumLibrary.html
.. _Python: https://python.org
.. _PyPy: https://pypy.org
.. _Jython: https://jython.org/
.. _IronPython: https://ironpython.net/
.. _demo project: https://github.com/robotframework/WebDemo
.. _Robot Framework User Guide: https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html
.. _Robot Framework installation instructions: https://github.com/robotframework/robotframework/blob/master/INSTALL.rst
.. _robotframework-users: https://groups.google.com/group/robotframework-users
.. _extending documentation: https://github.com/robotframework/SeleniumLibrary/blob/master/docs/extending/extending.rst
.. _Slack community: https://robotframework-slack-invite.herokuapp.com
.. _Robot Framework forum: https://forum.robotframework.org/
.. _issue tracker: https://github.com/robotframework/SeleniumLibrary/issues
.. _Other community channels: https://robotframework.org/#community

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/robotframework/SeleniumLibrary",
    "name": "robotframework-seleniumlibrary",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.6",
    "maintainer_email": null,
    "keywords": "robotframework testing testautomation selenium webdriver web",
    "author": "Ed Manlove, Yuri Verweij, Lisa Crispin",
    "author_email": "emanlove@verizon.net",
    "download_url": "https://files.pythonhosted.org/packages/e6/ce/97f650115c3a9b2fc8b5b4c7bff93d3582713de6c29e06436eb7321b6ff2/robotframework-seleniumlibrary-6.3.0.tar.gz",
    "platform": "any",
    "description": "SeleniumLibrary\r\n===============\r\n\r\n.. contents::\r\n\r\nIntroduction\r\n------------\r\n\r\nSeleniumLibrary_ is a web testing library for `Robot Framework`_ that\r\nutilizes the Selenium_ tool internally. The project is hosted on GitHub_\r\nand downloads can be found from PyPI_.\r\n\r\nSeleniumLibrary works with Selenium 3 and 4. It supports Python 3.6 or\r\nnewer. In addition to the normal Python_ interpreter, it works also\r\nwith PyPy_.\r\n\r\nSeleniumLibrary is based on the `old SeleniumLibrary`_ that was forked to\r\nSelenium2Library_ and then later renamed back to SeleniumLibrary.\r\nSee the Versions_ and History_ sections below for more information about\r\ndifferent versions and the overall project history.\r\n\r\n.. image:: https://img.shields.io/pypi/v/robotframework-seleniumlibrary.svg?label=version\r\n   :target: https://pypi.python.org/pypi/robotframework-seleniumlibrary\r\n   \r\n.. image:: https://img.shields.io/pypi/dm/robotframework-seleniumlibrary.svg\r\n   :target: https://pypi.python.org/pypi/robotframework-seleniumlibrary\r\n\r\n.. image:: https://img.shields.io/pypi/l/robotframework-seleniumlibrary.svg\r\n   :target: https://www.apache.org/licenses/LICENSE-2.0\r\n\r\n.. image:: https://github.com/robotframework/SeleniumLibrary/actions/workflows/CI.yml/badge.svg?branch=master\r\n    :target: https://github.com/robotframework/SeleniumLibrary/actions/workflows/CI.yml\r\n\r\nKeyword Documentation\r\n---------------------\r\nSee `keyword documentation`_ for available keywords and more information\r\nabout the library in general.\r\n\r\nInstallation\r\n------------\r\n\r\nThe recommended installation method is using pip_::\r\n\r\n    pip install --upgrade robotframework-seleniumlibrary\r\n\r\nRunning this command installs also the latest Selenium and Robot Framework\r\nversions, but you still need to install `browser drivers`_ separately.\r\nThe ``--upgrade`` option can be omitted when installing the library for the\r\nfirst time.\r\n\r\nThose migrating from Selenium2Library_ can install SeleniumLibrary so that\r\nit is exposed also as Selenium2Library::\r\n\r\n    pip install --upgrade robotframework-selenium2library\r\n\r\nThe above command installs the normal SeleniumLibrary as well as a new\r\nSelenium2Library version that is just a thin wrapper to SeleniumLibrary.\r\nThat allows importing Selenium2Library in tests while migrating to\r\nSeleniumLibrary.\r\n\r\nTo install the last legacy Selenium2Library_ version, use this command instead::\r\n\r\n    pip install robotframework-selenium2library==1.8.0\r\n\r\nWith recent versions of ``pip`` it is possible to install directly from the\r\nGitHub_ repository. To install latest source from the master branch, use\r\nthis command::\r\n\r\n    pip install git+https://github.com/robotframework/SeleniumLibrary.git\r\n\r\nPlease note that installation will take some time, because ``pip`` will\r\nclone the SeleniumLibrary_ project to a temporary directory and then\r\nperform the installation.\r\n\r\nSee `Robot Framework installation instructions`_ for detailed information\r\nabout installing Python and Robot Framework itself. For more details about\r\nusing ``pip`` see `its own documentation <pip_>`__.\r\n\r\nBrowser drivers\r\n---------------\r\n\r\nAfter installing the library, you still need to install browser and\r\noperating system specific browser drivers for all those browsers you\r\nwant to use in tests. These are the exact same drivers you need to use with\r\nSelenium also when not using SeleniumLibrary. More information about\r\ndrivers can be found from `Selenium documentation`__.\r\n\r\nThe general approach to install a browser driver is downloading a right\r\ndriver, such as ``chromedriver`` for Chrome, and placing it into\r\na directory that is in PATH__. Drivers for different browsers\r\ncan be found via Selenium documentation or by using your favorite\r\nsearch engine with a search term like ``selenium chrome browser driver``.\r\nNew browser driver versions are released to support features in\r\nnew browsers, fix bug, or otherwise, and you need to keep an eye on them\r\nto know when to update drivers you use.\r\n\r\nAlternatively, you can use a tool called WebdriverManager__ which can\r\nfind the latest version or when required, any version of appropriate\r\nwebdrivers for you and then download and link/copy it into right\r\nlocation. Tool can run on all major operating systems and supports\r\ndownloading of Chrome, Firefox, Opera & Edge webdrivers.\r\n\r\nHere's an example:\r\n\r\n.. code:: bash\r\n\r\n      pip install webdrivermanager\r\n      webdrivermanager firefox chrome --linkpath /usr/local/bin\r\n\r\n\r\n\r\n__ https://seleniumhq.github.io/selenium/docs/api/py/index.html#drivers\r\n__ https://en.wikipedia.org/wiki/PATH_(variable)\r\n__ https://github.com/omenia/webdrivermanager\r\n\r\nUsage\r\n-----\r\n\r\nTo use SeleniumLibrary in Robot Framework tests, the library needs to\r\nfirst be imported using the ``Library`` setting as any other library.\r\nThe library accepts some import time arguments, which are documented\r\nin the `keyword documentation`_ along with all the keywords provided\r\nby the library.\r\n\r\nWhen using Robot Framework, it is generally recommended to write as\r\neasy-to-understand tests as possible. The keywords provided by\r\nSeleniumLibrary is pretty low level, though, and often require\r\nimplementation-specific arguments like element locators to be passed\r\nas arguments. It is thus typically a good idea to write tests using\r\nRobot Framework's higher-level keywords that utilize SeleniumLibrary\r\nkeywords internally. This is illustrated by the following example\r\nwhere SeleniumLibrary keywords like ``Input Text`` are primarily\r\nused by higher-level keywords like ``Input Username``.\r\n\r\n.. code:: robotframework\r\n\r\n    *** Settings ***\r\n    Documentation     Simple example using SeleniumLibrary.\r\n    Library           SeleniumLibrary\r\n\r\n    *** Variables ***\r\n    ${LOGIN URL}      http://localhost:7272\r\n    ${BROWSER}        Chrome\r\n\r\n    *** Test Cases ***\r\n    Valid Login\r\n        Open Browser To Login Page\r\n        Input Username    demo\r\n        Input Password    mode\r\n        Submit Credentials\r\n        Welcome Page Should Be Open\r\n        [Teardown]    Close Browser\r\n\r\n    *** Keywords ***\r\n    Open Browser To Login Page\r\n        Open Browser    ${LOGIN URL}    ${BROWSER}\r\n        Title Should Be    Login Page\r\n\r\n    Input Username\r\n        [Arguments]    ${username}\r\n        Input Text    username_field    ${username}\r\n\r\n    Input Password\r\n        [Arguments]    ${password}\r\n        Input Text    password_field    ${password}\r\n\r\n    Submit Credentials\r\n        Click Button    login_button\r\n\r\n    Welcome Page Should Be Open\r\n        Title Should Be    Welcome Page\r\n\r\n\r\nThe above example is a slightly modified version of an example in a\r\n`demo project`_ that illustrates using Robot Framework and SeleniumLibrary.\r\nSee the demo for more examples that you can also execute on your own\r\nmachine. For more information about Robot Framework test data syntax in\r\ngeneral see the `Robot Framework User Guide`_.\r\n\r\nExtending SeleniumLibrary\r\n-------------------------\r\nBefore creating your own library which extends the ``SeleniumLibrary``, please consider would\r\nthe extension be also useful also for general usage. If it could be useful also for general\r\nusage, please create a new issue describing the enhancement request and even better if the\r\nissue is backed up by a pull request.\r\n\r\nIf the enhancement is not generally useful, example solution is domain specific, then the\r\nSeleniumLibrary offers public APIs which can be used to build its own plugins and libraries.\r\nPlugin API allows us to add new keywords, modify existing keywords and modify the internal\r\nfunctionality of the library. Also new libraries can be built on top of the\r\nSeleniumLibrary. Please see `extending documentation`_ for more details about the\r\navailable methods and for examples how the library can be extended.\r\n\r\nCommunity\r\n---------\r\n\r\nIf the provided documentation is not enough, there are various community channels\r\navailable:\r\n\r\n- `robotframework-users`_ mailing list\r\n- ``#seleniumlibrary`` and ``#seleniumlibrary-dev`` channels in\r\n  Robot Framework `Slack community`_\r\n- `Robot Framework forum`_ has channel for SeleniumLibrary.\r\n- SeleniumLibrary `issue tracker`_ for bug reports and concrete enhancement\r\n  requests\r\n- `Other community channels`_ including paid support\r\n\r\nVersions\r\n--------\r\n\r\nSeleniumLibrary has over the years lived under SeleniumLibrary and\r\nSelenium2Library names and different library versions have supported\r\ndifferent Selenium and Python versions. This is summarized in the table\r\nbelow and the History_ section afterwards explains the project history\r\na bit more.\r\n\r\n==================================  ==========================  ==========================  ===============\r\n             Project                     Selenium Version             Python Version         Comment\r\n==================================  ==========================  ==========================  ===============\r\nSeleniumLibrary 2.9.2 and earlier   Selenium 1 and 2            Python 2.5-2.7              The original SeleniumLibrary using Selenium RC API.\r\nSelenium2Library 1.8.0 and earlier  Selenium 2 and 3            Python 2.6-2.7              Fork of SeleniumLibrary using Selenium WebDriver API.\r\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.\r\nSeleniumLibrary 3.2                 Selenium 3                  Python 2.7 and 3.4+         Drops Selenium 2 support.\r\nSeleniumLibrary 4.0                 Selenium 3                  Python 2.7 and 3.4+         Plugin API and support for event friging webdriver.\r\nSeleniumLibrary 4.1                 Selenium 3                  Python 2.7 and 3.5+         Drops Python 3.4 support.\r\nSeleniumLibrary 4.2                 Selenium 3                  Python 2.7 and 3.5+         Supports only Selenium 3.141.0 or newer.\r\nSeleniumLibrary 4.4                 Selenium 3 and 4            Python 2.7 and 3.6+         New PythonLibCore and dropped Python 3.5 support.\r\nSeleniumLibrary 5.0                 Selenium 3 and 4            Python 3.6+                 Python 2 and Jython support is dropped.\r\nSeleniumLibrary 5.1                 Selenium 3 and 4            Python 3.6+                 Robot Framework 3.1 support is dropped.\r\nSelenium2Library 3.0                Depends on SeleniumLibrary  Depends on SeleniumLibrary  Thin wrapper for SeleniumLibrary 3.0 to ease transition.\r\n==================================  ==========================  ==========================  ===============\r\n\r\nHistory\r\n-------\r\n\r\nSeleniumLibrary originally used the Selenium Remote Controller (RC) API.\r\nWhen Selenium 2 was introduced with the new but backwards incompatible\r\nWebDriver API, SeleniumLibrary kept using Selenium RC and separate\r\nSelenium2Library using WebDriver was forked. These projects contained\r\nmostly the same keywords and in most cases Selenium2Library was a drop-in\r\nreplacement for SeleniumLibrary.\r\n\r\nOver the years development of the old SeleniumLibrary stopped and also\r\nthe Selenium RC API it used was deprecated. Selenium2Library was developed\r\nfurther and replaced the old library as the de facto web testing library\r\nfor Robot Framework.\r\n\r\nWhen Selenium 3 was released in 2016, it was otherwise backwards compatible\r\nwith Selenium 2, but the deprecated Selenium RC API was removed. This had two\r\nimportant effects:\r\n\r\n- The old SeleniumLibrary could not anymore be used with new Selenium versions.\r\n  This project was pretty much dead.\r\n- Selenium2Library was badly named as it supported Selenium 3 just fine.\r\n  This project needed a new name.\r\n\r\nAt the same time when Selenium 3 was released, Selenium2Library was going\r\nthrough larger architecture changes in order to ease future maintenance and\r\nto make adding Python 3 support easier. With all these big internal and\r\nexternal changes, it made sense to rename Selenium2Library back to\r\nSeleniumLibrary. This decision basically meant following changes:\r\n\r\n- Create separate repository for the `old SeleniumLibrary`_ to preserve\r\n  its history since Selenium2Library was forked.\r\n- Rename Selenium2Library project and the library itself to SeleniumLibrary_.\r\n- Add new Selenium2Library_ project to ease transitioning from Selenium2Library\r\n  to SeleniumLibrary.\r\n\r\nGoing forward, all new development will happen in the new SeleniumLibrary\r\nproject.\r\n\r\n.. _Robot Framework: https://robotframework.org\r\n.. _Selenium: https://www.seleniumhq.org/\r\n.. _SeleniumLibrary: https://github.com/robotframework/SeleniumLibrary\r\n.. _Selenium2Library: https://github.com/robotframework/Selenium2Library\r\n.. _Old SeleniumLibrary: https://github.com/robotframework/OldSeleniumLibrary\r\n.. _pip: http://pip-installer.org\r\n.. _PyPI: https://pypi.python.org/pypi/robotframework-seleniumlibrary\r\n.. _GitHub: https://github.com/robotframework/SeleniumLibrary\r\n.. _Keyword Documentation: https://robotframework.org/SeleniumLibrary/SeleniumLibrary.html\r\n.. _Python: https://python.org\r\n.. _PyPy: https://pypy.org\r\n.. _Jython: https://jython.org/\r\n.. _IronPython: https://ironpython.net/\r\n.. _demo project: https://github.com/robotframework/WebDemo\r\n.. _Robot Framework User Guide: https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html\r\n.. _Robot Framework installation instructions: https://github.com/robotframework/robotframework/blob/master/INSTALL.rst\r\n.. _robotframework-users: https://groups.google.com/group/robotframework-users\r\n.. _extending documentation: https://github.com/robotframework/SeleniumLibrary/blob/master/docs/extending/extending.rst\r\n.. _Slack community: https://robotframework-slack-invite.herokuapp.com\r\n.. _Robot Framework forum: https://forum.robotframework.org/\r\n.. _issue tracker: https://github.com/robotframework/SeleniumLibrary/issues\r\n.. _Other community channels: https://robotframework.org/#community\r\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Web testing library for Robot Framework",
    "version": "6.3.0",
    "project_urls": {
        "Homepage": "https://github.com/robotframework/SeleniumLibrary"
    },
    "split_keywords": [
        "robotframework",
        "testing",
        "testautomation",
        "selenium",
        "webdriver",
        "web"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c00e0737020897ded3bdc747cf92a71eeda8bd9dd97e2502ba47d2eb89af90fa",
                "md5": "2494863fbf9638c13b5f340b8d866ac1",
                "sha256": "ae16e3d88e9779157bdfba3405c34c2a83965652d2c7a1de9c1ea9734302cc24"
            },
            "downloads": -1,
            "filename": "robotframework_seleniumlibrary-6.3.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2494863fbf9638c13b5f340b8d866ac1",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": "<4,>=3.6",
            "size": 97619,
            "upload_time": "2024-04-19T13:18:11",
            "upload_time_iso_8601": "2024-04-19T13:18:11.944524Z",
            "url": "https://files.pythonhosted.org/packages/c0/0e/0737020897ded3bdc747cf92a71eeda8bd9dd97e2502ba47d2eb89af90fa/robotframework_seleniumlibrary-6.3.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e6ce97f650115c3a9b2fc8b5b4c7bff93d3582713de6c29e06436eb7321b6ff2",
                "md5": "948f8ed2bccf52d6e2e909ba6b578e93",
                "sha256": "5846f5ca4f1729567f9c8b10a3bb191601c654e6c04b952194310434da8e6826"
            },
            "downloads": -1,
            "filename": "robotframework-seleniumlibrary-6.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "948f8ed2bccf52d6e2e909ba6b578e93",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.6",
            "size": 166255,
            "upload_time": "2024-04-19T13:18:14",
            "upload_time_iso_8601": "2024-04-19T13:18:14.185844Z",
            "url": "https://files.pythonhosted.org/packages/e6/ce/97f650115c3a9b2fc8b5b4c7bff93d3582713de6c29e06436eb7321b6ff2/robotframework-seleniumlibrary-6.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 13:18:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "robotframework",
    "github_project": "SeleniumLibrary",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "robotframework-seleniumlibrary"
}
        
Elapsed time: 0.20538s