nrobo


Namenrobo JSON
Version 2024.43.0 PyPI version JSON
download
home_pageNone
SummaryPowerful! Yet, Easy to USE! Automated Testing Framework
upload_time2024-07-01 06:45:52
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords test automation test automation framework automated testing automation testing testing qa acceptance test automation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. Project Description
.. Project Log

.. Logo

.. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2023/01/Artboard-1.png
    :alt: nRobo image not found!
    :height: 200
    :width: 200
    :align: center

=======================================
nRoBo (An Automated Testing Framework )
=======================================

For Web Developers, QAs and Testers
***********************************

.. Project Status

--------------
Project Status
--------------
**Active**

.. Online Tutorials

----------------
Online Tutorials
----------------
VISIT and SUBSCRIBE to `nRoBo YouTube Channel <https://www.youtube.com/@nrobotestautomationframework/playlists>`_

.. Pre-requisites

Pre-requisites
--------------

Following pre-requisites needs to be installed in order to run ***nRoBo*** framework.

    0. Install Python (3.11 or higher)
        - `Check install guide for Python <https://www.python.org/downloads/>`_

        - Notes on Python Installation on Windows:
            - Go to "Control Panel > Add Or Remove Programs" and make sure that there are not multiple versions of Python are installed.
            - While installing Python, make sure following options to check as mentioned in the screenshots:


        .. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2024/03/Screenshot_1.png
            :alt: Install Python on Windows Screenshot 1
            :height: 200
            :width: 33%


        .. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2024/03/Screenshot_2.png
            :alt: Install Python on Windows Screenshot 2
            :height: 200
            :width:  33%

        .. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2024/03/Screenshot_3.png
            :alt: Install Python on Windows Screenshot 3
            :height: 200
            :width: 33%


        .. code-block:: bash

            python --version
            # or
            python --version

    1. Install Java (11  or higher)
        - `Check install guide for Java <https://www.java.com/en/download/manual.jsp>`_
        - Run the following command to check if java is installed

        .. code-block:: bash

            java --version

    2. Install allure command line tool.
        - Check `Install guide <https://allurereport.org/docs/gettingstarted-installation/>`_
        - Run the following command to check if allure cli is installed

        .. code-block:: bash

            allure --version

    3. Install Target Browsers on testing systems
        - `Chrome <https://www.google.com/chrome/>`_
        - `Edge <https://www.microsoft.com/en-us/edge/download>`_
        - `IE <https://www.selenium.dev/downloads/>`_
        - `Safari <https://support.apple.com/downloads/safari>`_
        - `Firefox <https://www.mozilla.org/en-US/firefox/new/>`_

.. Installation

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

**On Windows machine**, Run Command Prompt and/or Python IDE of your choice should be run in Administrator mode and execute the following commands.
(To run in administrator mode, Right click on the tool and select 'Run As Administrator' option)

0. Make a directory for automation project

.. code-block:: bash

    mkdir <project-name>

- Example:
    If you want to develop autotests for the project, *Dream*.
    You can create directory and change directory to *dream* as following:

.. code-block:: bash

    mkdir dream
    cd dream

1. Install **virtualenv** package

.. code-block:: bash

    pip install virtualenv

2. Create virtual environment - .venv

.. code-block:: bash

    virtualenv .venv

3. Activate virtual environment

    - Unix/Mac/Linux

    .. code-block:: bash

        source .venv/bin/activate

    - Windows

    .. code-block:: bash

        .\\.venv\\Scripts\\activate

4. Install *nrobo*

.. code-block:: bash

    pip install nrobo --require-virtualenv

5. Install & run framework in single command

.. code-block:: bash

    nrobo --instances 10

.. note:: If there are any errors, run the upgrade command, pip install --upgrade nrobo

6. Run tests
    A. Minimal switches

    .. code-block:: bash

        nrobo --browser chrome_headless --report allure

    B. Typical usage

    .. code-block:: bash

        nrobo --app <app-name> --url <test-url> --username <username> --password <password> --instances <number-of-parallel-tests> --reruns <number-of-retries-to-rerun-failed-tests> --browser chrome_headless --report allure

    - Example:

    .. code-block:: bash

        nrobo --app Lotus --url https://www.google.com --username shiv --password tandav --instances 10 --reruns 2 --browser chrome_headless --report allure


    Above command instructs nrobo to do the following actions:
        - Launch the tests of Lotus application from the default test directory, <project-root-dir>, and its subdirectories and generate both, html (plain) and allure (rich) reports for displaying test results with following additional test parameters:

            #. Test url (--url switch)
            #. Credential: (username, password)=(shiv, tandav)
            #. Run bunch of 10 tests at once (--instances switch)
            #. Rerun addition 2 times the tests which got failed (--reruns switch)
            #. Target browser = Headless Chrome (--browser switch)

Notes for running -b=anti_bot_chrome:
    - `When running from a datacenter (even smaller ones), chances are large you will not pass! Also, if your ip reputation at home is low, you won't pass! <https://pypi.org/help/#description-content-type>`_
    - anti_bot_chrome will not work with --grid switch!

.. Command Line Switches

Command Line Switches
---------------------
This section enlists list of nRoBo-command-line-switches (nCLI) that it supports.
nCLI shadows every PyTest-command-line-switches (PyTestCLI) for backward compatibility with pytest.

Thus, nCLI switches are being categorized into three types:
    A. Pure-nCLI-switches
        - Only nCLI specific switches. Non-PyTest CLI switches.
    B. nCLI shadowing switches
        - These are PyTest switches overriden by nCLI with a new long or short name. These are at core, pure PyTest switches.
    C. Pure-PyTest-CLI-switches
        - As the name suggests, it is self explanatory that these switches are pure PyTest switches and maintained by them.

Below is a list of switches including all the three types categorically.

A. Pure nCLI Switches

    -i, --install           Install nRoBo requirements and framework on host system
    --app                   Name of application under test.
                            Name should not include special chars and it should only having alphanumeric values.
    --url                   Application url under test.
    --username              Username for login.
    --password              Password for login.
    -n, --instances         Number of parallel tests to reduce test-run-time.
                            Default value is 1. Meaning single test at a time in sequence.
    --report                Defines type of test report. Two types are supported, Simple HTML or Rich Allure report.
                            Options are <html> or <allure>. Default is <html>
    -b, --browser           Target browser. Default is **chrome**.
                            Following is a list of browser options support in nRoBo.
                            *chrome*, *chrome_headless*, *anti_bot_chrome*, *edge*, *edge_headless*,
                            *safari*, *firefox*, *firefox_headless*, *ie*
    --browser-config        Path of browser-config-file containing additional options that is/are needed to be applied
                            before browser instantiation. Each line in file should contain one option only.

                            For example: You want to apply, --start-maximized, chrome switch for chrome browser.
                            and if the browser-config-file is names as 'chrome_config.txt', then
                            the content of file would be as following:

                                --start-maximized

                            There will be no conversion taking place by nRoBo!
                            The browser switches will be applied to the browser instance.
    --grid                  Remote Grid server url.
                            Tests will be running on the machine when Grid server is running pointed by Grid url.

B. nCLI Shadowing Switches

    -k, --key               Only run tests that match the given substring
                            expression. An expression is a python resolvable
                            expression where all names are substring-matched
                            against test names and their parent classes.

                            Example:
                                -k 'test_method or test_other' matches all test.yaml functions and
                                classes whose name contains 'test_method' or 'test_other',
                                while -k 'not test_method' matches those
                                that don't contain 'test_method' in their names. -k 'not test_method
                                and not test_other' will eliminate the matches.
                                Additionally keywords are matched to classes
                                and functions containing extra names in their 'extra_keyword_matches' set,
                                as well as functions which have names assigned directly to them.
                                The matching is case-insensitive.

                            Note: --key switch is shadowing -k switch of PyTest for the sake of readability.
    -m, --marker            Only run tests matching given mark expression.
                            For example:
                            -m 'mark1 and not mark2'

C. Pure PyTest CLI Switches

    --reruns                Retries to rerun the failed tests n times specified by --reruns switch.
    --reruns-delay          Delay time in second(s) before a rerun for a failed test. Default is 1 second.
    --markers               Show markers (builtin, plugin and per-project ones).
    --junit-xml             --junit-xml=path. create junit-xml style report file at given path.
    --rootdir               --rootdir=ROOTDIR. Define root directory for tests.
                            Can be relative path: 'root_dir', './root_dir','root_dir/another_dir/'; absolute path:'/home/user/root_dir'; path with variables: '$HOME/root_dir'.
    --co, --collect-only     only collect tests, don't execute them.

    Note:
        * Full list of PyTest switches are enlisted and explained at the following web address: `Pure PyTest CLI Switches <https://docs.pytest.org/en/6.2.x/reference.html#command-line-flags>`_
        * Full list of all switches can be seen by running the following nrobo cli:

            .. code-block:: bash

                nrobo -h
                #or
                nrobo --help

        * nRoBo shadows all the PyTest switches, so no need to worry about. We can use each of them within the nRoBo framework. Isn't it great!

Personalization
---------------

.. note:: This section will be updated soon!

Reports
-------

Support for two kinds of test reports:

1. Lightweight HTML Report (*Best for sharing test results*)
    - Go to *<results>* dir and Double click on <report.html> file to view the simple html report.
2. Rich Allure Pytest Report (*Best for visualization*)
    - *Make sure *allure-pytest* command line tool is installed!*
        - To check, run the command:

        .. code-block:: bash

            allure --version

        - If not installed, please go through `Pre-requisites` section above.
    - Run the following command:

    .. code-block:: bash

        allure serve results/allure

.. Video Tutorials

------
Videos
------

.. note:: This section will be updated soon!

.. Features

--------
Features
--------

.. topic:: @ @


    * Easy and standard install - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Easy to learn and use - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Simple and Well Defined Automation Directory Structure - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Report Customization - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Rich Command Line Support that helps integration with CI/CD pipeline or any DevOps tech. - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Shipped with rich set of examples along with install. Thus, speedup learning. - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * VISIT and SUBSCRIBE to Dedicated `nRoBo YouTube channel <https://www.youtube.com/@nrobotestautomationframework/playlists>`_ with a collection of video tutorials. Thus, speedup learning. - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Ready to use framework loaded with power of PyTest, Selenium Webdriver 4, HTML Report, Rich Allure Report and other tools. By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Ability to organize tests in Groups. Inbuilt groups are sanity, ui, regression, nogui, api at present. - By `PyTest <https://docs.pytest.org/>`_ and `nRoBo <https://pypi.org/project/nrobo/>`_
    * Rich Browser Support (Chrome, Headless Chrome, Anti Bot Chrome, Edge, Safari, Firefox, FireFox Headless, IE) - By `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_
    * Rich Platform Support (Unix, Linux, Mac, Windows) - By `PyTest <https://docs.pytest.org/>`_, `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_ and `nRoBo <https://pypi.org/project/nrobo/>`_
    * nRoBo selenium wrapper classes and methods that saves lot of key presses. Thus, leveraging benefits of compact, readable and manageable of code. - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Well-structured thread-safe inbuilt setup and tear down processes. Thus, You can keep focus on testing! Not on maintaining framework. - By `nRoBo <https://pypi.org/project/nrobo/>`_
    * Test Parallelization - Inherited from `PyTest <https://docs.pytest.org/>`_
    * Distributed testing over Grid infrastructure - Inherited from `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_
    * Test parameterization - Inherited from `PyTest <https://docs.pytest.org/>`_
    * Screenshot-capture at the end of each test - Inherited from `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_
    * Capture webdriver logs, console logs and screenshots in reports - Inherited from `PyTest <https://docs.pytest.org/>`_
    * Inbuilt integration with NxGen Rich Allure Report (Backed by `Allure <https://allurereport.org/docs/pytest/>`_ Reports and `pytest-html-reports <https://pytest-html.readthedocs.io/en/latest/user_guide.html>`_)

.. list-table:: **Download Statistics**
   :widths: 33 33 33
   :align: center
   :header-rows: 1

   * - Country
     - Percent
     - Download Count
   * - US
     - 40.20%
     - 27,877
   * - CN
     - 12.19%
     - 8,454
   * - DE
     - 7.10%
     - 4,925
   * - SG
     - 5.05%
     - 3,505
   * - RU
     - 4.92%
     - 3,410
   * - HK
     - 4.38%
     - 3,040
   * - JP
     - 3.03%
     - 2,102
   * - FR
     - 3.02%
     - 2,091
   * - KR
     - 2.73%
     - 1,895
   * - CA
     - 2.35%
     - 1,627
   * - NO
     - 2.10%
     - 1,457
   * - GB
     - 1.67%
     - 1,161
   * - AU
     - 1.57%
     - 1,086
   * - IN
     - 1.52%
     - 1,055
   * - SE
     - 1.38%
     - 954
   * - TH
     - 0.70%
     - 482
   * - HR
     - 0.69%
     - 476
   * - DK
     - 0.64%
     - 443
   * - IE
     - 0.60%
     - 414
   * - NL
     - 0.59%
     - 411
   * - ES
     - 0.55%
     - 380
   * - TW
     - 0.52%
     - 363
   * - IL
     - 0.49%
     - 341
   * - CH
     - 0.38%
     - 265
   * - ZA
     - 0.37%
     - 255
   * - AE
     - 0.30%
     - 209
   * - CZ
     - 0.21%
     - 144
   * - FI
     - 0.16%
     - 113
   * - BR
     - 0.11%
     - 78
   * - PL
     - 0.09%
     - 61
   * - TR
     - 0.07%
     - 46
   * - CW
     - 0.06%
     - 44
   * - IS
     - 0.06%
     - 42
   * - OM
     - 0.06%
     - 42
   * - RO
     - 0.03%
     - 24
   * - GF
     - 0.02%
     - 16
   * - BE
     - 0.02%
     - 14
   * - UA
     - 0.01%
     - 8
   * - CY
     - 0.01%
     - 8
   * - CL
     - 0.01%
     - 6
   * - DZ
     - 0.01%
     - 4
   * - BG
     - 0.01%
     - 4
   * - EE
     - 0.00%
     - 3
   * - AR
     - 0.00%
     - 3
   * - SK
     - 0.00%
     - 2
   * - MX
     - 0.00%
     - 1
   * - PT
     - 0.00%
     - 1
   * - VN
     - 0.00%
     - 1
   * - SI
     - 0.00%
     - 1
   * - RS
     - 0.00%
     - 1
   * - **Total**
     - **100.00%**
     - **69,345**


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "nrobo",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Panchdev Singh Chauhan <erpanchdev@gmail.com>",
    "keywords": "test automation, test automation framework, automated testing, automation testing, testing, qa, acceptance test, automation",
    "author": null,
    "author_email": "Panchdev Singh Chauhan <erpanchdev@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/92/c2/8e72bcca527bb82631991252ffec373158d536093e4481367b1af3a744c1/nrobo-2024.43.0.tar.gz",
    "platform": null,
    "description": ".. Project Description\n.. Project Log\n\n.. Logo\n\n.. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2023/01/Artboard-1.png\n    :alt: nRobo image not found!\n    :height: 200\n    :width: 200\n    :align: center\n\n=======================================\nnRoBo (An Automated Testing Framework )\n=======================================\n\nFor Web Developers, QAs and Testers\n***********************************\n\n.. Project Status\n\n--------------\nProject Status\n--------------\n**Active**\n\n.. Online Tutorials\n\n----------------\nOnline Tutorials\n----------------\nVISIT and SUBSCRIBE to `nRoBo YouTube Channel <https://www.youtube.com/@nrobotestautomationframework/playlists>`_\n\n.. Pre-requisites\n\nPre-requisites\n--------------\n\nFollowing pre-requisites needs to be installed in order to run ***nRoBo*** framework.\n\n    0. Install Python (3.11 or higher)\n        - `Check install guide for Python <https://www.python.org/downloads/>`_\n\n        - Notes on Python Installation on Windows:\n            - Go to \"Control Panel > Add Or Remove Programs\" and make sure that there are not multiple versions of Python are installed.\n            - While installing Python, make sure following options to check as mentioned in the screenshots:\n\n\n        .. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2024/03/Screenshot_1.png\n            :alt: Install Python on Windows Screenshot 1\n            :height: 200\n            :width: 33%\n\n\n        .. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2024/03/Screenshot_2.png\n            :alt: Install Python on Windows Screenshot 2\n            :height: 200\n            :width:  33%\n\n        .. image:: http://www.namasteydigitalindia.com/connect/wp-content/uploads/2024/03/Screenshot_3.png\n            :alt: Install Python on Windows Screenshot 3\n            :height: 200\n            :width: 33%\n\n\n        .. code-block:: bash\n\n            python --version\n            # or\n            python --version\n\n    1. Install Java (11  or higher)\n        - `Check install guide for Java <https://www.java.com/en/download/manual.jsp>`_\n        - Run the following command to check if java is installed\n\n        .. code-block:: bash\n\n            java --version\n\n    2. Install allure command line tool.\n        - Check `Install guide <https://allurereport.org/docs/gettingstarted-installation/>`_\n        - Run the following command to check if allure cli is installed\n\n        .. code-block:: bash\n\n            allure --version\n\n    3. Install Target Browsers on testing systems\n        - `Chrome <https://www.google.com/chrome/>`_\n        - `Edge <https://www.microsoft.com/en-us/edge/download>`_\n        - `IE <https://www.selenium.dev/downloads/>`_\n        - `Safari <https://support.apple.com/downloads/safari>`_\n        - `Firefox <https://www.mozilla.org/en-US/firefox/new/>`_\n\n.. Installation\n\nInstallation\n------------\n\n**On Windows machine**, Run Command Prompt and/or Python IDE of your choice should be run in Administrator mode and execute the following commands.\n(To run in administrator mode, Right click on the tool and select 'Run As Administrator' option)\n\n0. Make a directory for automation project\n\n.. code-block:: bash\n\n    mkdir <project-name>\n\n- Example:\n    If you want to develop autotests for the project, *Dream*.\n    You can create directory and change directory to *dream* as following:\n\n.. code-block:: bash\n\n    mkdir dream\n    cd dream\n\n1. Install **virtualenv** package\n\n.. code-block:: bash\n\n    pip install virtualenv\n\n2. Create virtual environment - .venv\n\n.. code-block:: bash\n\n    virtualenv .venv\n\n3. Activate virtual environment\n\n    - Unix/Mac/Linux\n\n    .. code-block:: bash\n\n        source .venv/bin/activate\n\n    - Windows\n\n    .. code-block:: bash\n\n        .\\\\.venv\\\\Scripts\\\\activate\n\n4. Install *nrobo*\n\n.. code-block:: bash\n\n    pip install nrobo --require-virtualenv\n\n5. Install & run framework in single command\n\n.. code-block:: bash\n\n    nrobo --instances 10\n\n.. note:: If there are any errors, run the upgrade command, pip install --upgrade nrobo\n\n6. Run tests\n    A. Minimal switches\n\n    .. code-block:: bash\n\n        nrobo --browser chrome_headless --report allure\n\n    B. Typical usage\n\n    .. code-block:: bash\n\n        nrobo --app <app-name> --url <test-url> --username <username> --password <password> --instances <number-of-parallel-tests> --reruns <number-of-retries-to-rerun-failed-tests> --browser chrome_headless --report allure\n\n    - Example:\n\n    .. code-block:: bash\n\n        nrobo --app Lotus --url https://www.google.com --username shiv --password tandav --instances 10 --reruns 2 --browser chrome_headless --report allure\n\n\n    Above command instructs nrobo to do the following actions:\n        - Launch the tests of Lotus application from the default test directory, <project-root-dir>, and its subdirectories and generate both, html (plain) and allure (rich) reports for displaying test results with following additional test parameters:\n\n            #. Test url (--url switch)\n            #. Credential: (username, password)=(shiv, tandav)\n            #. Run bunch of 10 tests at once (--instances switch)\n            #. Rerun addition 2 times the tests which got failed (--reruns switch)\n            #. Target browser = Headless Chrome (--browser switch)\n\nNotes for running -b=anti_bot_chrome:\n    - `When running from a datacenter (even smaller ones), chances are large you will not pass! Also, if your ip reputation at home is low, you won't pass! <https://pypi.org/help/#description-content-type>`_\n    - anti_bot_chrome will not work with --grid switch!\n\n.. Command Line Switches\n\nCommand Line Switches\n---------------------\nThis section enlists list of nRoBo-command-line-switches (nCLI) that it supports.\nnCLI shadows every PyTest-command-line-switches (PyTestCLI) for backward compatibility with pytest.\n\nThus, nCLI switches are being categorized into three types:\n    A. Pure-nCLI-switches\n        - Only nCLI specific switches. Non-PyTest CLI switches.\n    B. nCLI shadowing switches\n        - These are PyTest switches overriden by nCLI with a new long or short name. These are at core, pure PyTest switches.\n    C. Pure-PyTest-CLI-switches\n        - As the name suggests, it is self explanatory that these switches are pure PyTest switches and maintained by them.\n\nBelow is a list of switches including all the three types categorically.\n\nA. Pure nCLI Switches\n\n    -i, --install           Install nRoBo requirements and framework on host system\n    --app                   Name of application under test.\n                            Name should not include special chars and it should only having alphanumeric values.\n    --url                   Application url under test.\n    --username              Username for login.\n    --password              Password for login.\n    -n, --instances         Number of parallel tests to reduce test-run-time.\n                            Default value is 1. Meaning single test at a time in sequence.\n    --report                Defines type of test report. Two types are supported, Simple HTML or Rich Allure report.\n                            Options are <html> or <allure>. Default is <html>\n    -b, --browser           Target browser. Default is **chrome**.\n                            Following is a list of browser options support in nRoBo.\n                            *chrome*, *chrome_headless*, *anti_bot_chrome*, *edge*, *edge_headless*,\n                            *safari*, *firefox*, *firefox_headless*, *ie*\n    --browser-config        Path of browser-config-file containing additional options that is/are needed to be applied\n                            before browser instantiation. Each line in file should contain one option only.\n\n                            For example: You want to apply, --start-maximized, chrome switch for chrome browser.\n                            and if the browser-config-file is names as 'chrome_config.txt', then\n                            the content of file would be as following:\n\n                                --start-maximized\n\n                            There will be no conversion taking place by nRoBo!\n                            The browser switches will be applied to the browser instance.\n    --grid                  Remote Grid server url.\n                            Tests will be running on the machine when Grid server is running pointed by Grid url.\n\nB. nCLI Shadowing Switches\n\n    -k, --key               Only run tests that match the given substring\n                            expression. An expression is a python resolvable\n                            expression where all names are substring-matched\n                            against test names and their parent classes.\n\n                            Example:\n                                -k 'test_method or test_other' matches all test.yaml functions and\n                                classes whose name contains 'test_method' or 'test_other',\n                                while -k 'not test_method' matches those\n                                that don't contain 'test_method' in their names. -k 'not test_method\n                                and not test_other' will eliminate the matches.\n                                Additionally keywords are matched to classes\n                                and functions containing extra names in their 'extra_keyword_matches' set,\n                                as well as functions which have names assigned directly to them.\n                                The matching is case-insensitive.\n\n                            Note: --key switch is shadowing -k switch of PyTest for the sake of readability.\n    -m, --marker            Only run tests matching given mark expression.\n                            For example:\n                            -m 'mark1 and not mark2'\n\nC. Pure PyTest CLI Switches\n\n    --reruns                Retries to rerun the failed tests n times specified by --reruns switch.\n    --reruns-delay          Delay time in second(s) before a rerun for a failed test. Default is 1 second.\n    --markers               Show markers (builtin, plugin and per-project ones).\n    --junit-xml             --junit-xml=path. create junit-xml style report file at given path.\n    --rootdir               --rootdir=ROOTDIR. Define root directory for tests.\n                            Can be relative path: 'root_dir', './root_dir','root_dir/another_dir/'; absolute path:'/home/user/root_dir'; path with variables: '$HOME/root_dir'.\n    --co, --collect-only     only collect tests, don't execute them.\n\n    Note:\n        * Full list of PyTest switches are enlisted and explained at the following web address: `Pure PyTest CLI Switches <https://docs.pytest.org/en/6.2.x/reference.html#command-line-flags>`_\n        * Full list of all switches can be seen by running the following nrobo cli:\n\n            .. code-block:: bash\n\n                nrobo -h\n                #or\n                nrobo --help\n\n        * nRoBo shadows all the PyTest switches, so no need to worry about. We can use each of them within the nRoBo framework. Isn't it great!\n\nPersonalization\n---------------\n\n.. note:: This section will be updated soon!\n\nReports\n-------\n\nSupport for two kinds of test reports:\n\n1. Lightweight HTML Report (*Best for sharing test results*)\n    - Go to *<results>* dir and Double click on <report.html> file to view the simple html report.\n2. Rich Allure Pytest Report (*Best for visualization*)\n    - *Make sure *allure-pytest* command line tool is installed!*\n        - To check, run the command:\n\n        .. code-block:: bash\n\n            allure --version\n\n        - If not installed, please go through `Pre-requisites` section above.\n    - Run the following command:\n\n    .. code-block:: bash\n\n        allure serve results/allure\n\n.. Video Tutorials\n\n------\nVideos\n------\n\n.. note:: This section will be updated soon!\n\n.. Features\n\n--------\nFeatures\n--------\n\n.. topic:: @ @\n\n\n    * Easy and standard install - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Easy to learn and use - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Simple and Well Defined Automation Directory Structure - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Report Customization - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Rich Command Line Support that helps integration with CI/CD pipeline or any DevOps tech. - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Shipped with rich set of examples along with install. Thus, speedup learning. - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * VISIT and SUBSCRIBE to Dedicated `nRoBo YouTube channel <https://www.youtube.com/@nrobotestautomationframework/playlists>`_ with a collection of video tutorials. Thus, speedup learning. - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Ready to use framework loaded with power of PyTest, Selenium Webdriver 4, HTML Report, Rich Allure Report and other tools. By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Ability to organize tests in Groups. Inbuilt groups are sanity, ui, regression, nogui, api at present. - By `PyTest <https://docs.pytest.org/>`_ and `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Rich Browser Support (Chrome, Headless Chrome, Anti Bot Chrome, Edge, Safari, Firefox, FireFox Headless, IE) - By `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_\n    * Rich Platform Support (Unix, Linux, Mac, Windows) - By `PyTest <https://docs.pytest.org/>`_, `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_ and `nRoBo <https://pypi.org/project/nrobo/>`_\n    * nRoBo selenium wrapper classes and methods that saves lot of key presses. Thus, leveraging benefits of compact, readable and manageable of code. - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Well-structured thread-safe inbuilt setup and tear down processes. Thus, You can keep focus on testing! Not on maintaining framework. - By `nRoBo <https://pypi.org/project/nrobo/>`_\n    * Test Parallelization - Inherited from `PyTest <https://docs.pytest.org/>`_\n    * Distributed testing over Grid infrastructure - Inherited from `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_\n    * Test parameterization - Inherited from `PyTest <https://docs.pytest.org/>`_\n    * Screenshot-capture at the end of each test - Inherited from `SeleniumWebdriver <https://www.selenium.dev/documentation/webdriver/>`_\n    * Capture webdriver logs, console logs and screenshots in reports - Inherited from `PyTest <https://docs.pytest.org/>`_\n    * Inbuilt integration with NxGen Rich Allure Report (Backed by `Allure <https://allurereport.org/docs/pytest/>`_ Reports and `pytest-html-reports <https://pytest-html.readthedocs.io/en/latest/user_guide.html>`_)\n\n.. list-table:: **Download Statistics**\n   :widths: 33 33 33\n   :align: center\n   :header-rows: 1\n\n   * - Country\n     - Percent\n     - Download Count\n   * - US\n     - 40.20%\n     - 27,877\n   * - CN\n     - 12.19%\n     - 8,454\n   * - DE\n     - 7.10%\n     - 4,925\n   * - SG\n     - 5.05%\n     - 3,505\n   * - RU\n     - 4.92%\n     - 3,410\n   * - HK\n     - 4.38%\n     - 3,040\n   * - JP\n     - 3.03%\n     - 2,102\n   * - FR\n     - 3.02%\n     - 2,091\n   * - KR\n     - 2.73%\n     - 1,895\n   * - CA\n     - 2.35%\n     - 1,627\n   * - NO\n     - 2.10%\n     - 1,457\n   * - GB\n     - 1.67%\n     - 1,161\n   * - AU\n     - 1.57%\n     - 1,086\n   * - IN\n     - 1.52%\n     - 1,055\n   * - SE\n     - 1.38%\n     - 954\n   * - TH\n     - 0.70%\n     - 482\n   * - HR\n     - 0.69%\n     - 476\n   * - DK\n     - 0.64%\n     - 443\n   * - IE\n     - 0.60%\n     - 414\n   * - NL\n     - 0.59%\n     - 411\n   * - ES\n     - 0.55%\n     - 380\n   * - TW\n     - 0.52%\n     - 363\n   * - IL\n     - 0.49%\n     - 341\n   * - CH\n     - 0.38%\n     - 265\n   * - ZA\n     - 0.37%\n     - 255\n   * - AE\n     - 0.30%\n     - 209\n   * - CZ\n     - 0.21%\n     - 144\n   * - FI\n     - 0.16%\n     - 113\n   * - BR\n     - 0.11%\n     - 78\n   * - PL\n     - 0.09%\n     - 61\n   * - TR\n     - 0.07%\n     - 46\n   * - CW\n     - 0.06%\n     - 44\n   * - IS\n     - 0.06%\n     - 42\n   * - OM\n     - 0.06%\n     - 42\n   * - RO\n     - 0.03%\n     - 24\n   * - GF\n     - 0.02%\n     - 16\n   * - BE\n     - 0.02%\n     - 14\n   * - UA\n     - 0.01%\n     - 8\n   * - CY\n     - 0.01%\n     - 8\n   * - CL\n     - 0.01%\n     - 6\n   * - DZ\n     - 0.01%\n     - 4\n   * - BG\n     - 0.01%\n     - 4\n   * - EE\n     - 0.00%\n     - 3\n   * - AR\n     - 0.00%\n     - 3\n   * - SK\n     - 0.00%\n     - 2\n   * - MX\n     - 0.00%\n     - 1\n   * - PT\n     - 0.00%\n     - 1\n   * - VN\n     - 0.00%\n     - 1\n   * - SI\n     - 0.00%\n     - 1\n   * - RS\n     - 0.00%\n     - 1\n   * - **Total**\n     - **100.00%**\n     - **69,345**\n\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Powerful! Yet, Easy to USE! Automated Testing Framework",
    "version": "2024.43.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/pancht/ngrobo/issues",
        "GitHub Repo": "https://github.com/pancht/ngrobo",
        "Homepage": "https://pypi.org/project/nrobo/",
        "changelog": "https://github.com/pancht/ngrobo/blob/master/CHANGELOG.md"
    },
    "split_keywords": [
        "test automation",
        " test automation framework",
        " automated testing",
        " automation testing",
        " testing",
        " qa",
        " acceptance test",
        " automation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb9aba46cffa327665ae7863bfe442387929f3734b6777a21358e95527ecc8c9",
                "md5": "fdd4acdc8f5ec1d9b0ededbbe9ddb4b2",
                "sha256": "7596abf55e40aa2cabe3e80997812ea24b51d11079cae06154b3527ffe35e6a6"
            },
            "downloads": -1,
            "filename": "nrobo-2024.43.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fdd4acdc8f5ec1d9b0ededbbe9ddb4b2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 98269,
            "upload_time": "2024-07-01T06:45:49",
            "upload_time_iso_8601": "2024-07-01T06:45:49.711692Z",
            "url": "https://files.pythonhosted.org/packages/cb/9a/ba46cffa327665ae7863bfe442387929f3734b6777a21358e95527ecc8c9/nrobo-2024.43.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92c28e72bcca527bb82631991252ffec373158d536093e4481367b1af3a744c1",
                "md5": "49595dfda9a7f7a0aed55aefe86f53a9",
                "sha256": "770fe07ada1289d33a216a3374dee5b2fba293cbacb6d169f8e966782b7b9fa8"
            },
            "downloads": -1,
            "filename": "nrobo-2024.43.0.tar.gz",
            "has_sig": false,
            "md5_digest": "49595dfda9a7f7a0aed55aefe86f53a9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 82124,
            "upload_time": "2024-07-01T06:45:52",
            "upload_time_iso_8601": "2024-07-01T06:45:52.775772Z",
            "url": "https://files.pythonhosted.org/packages/92/c2/8e72bcca527bb82631991252ffec373158d536093e4481367b1af3a744c1/nrobo-2024.43.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-07-01 06:45:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pancht",
    "github_project": "ngrobo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "nrobo"
}
        
Elapsed time: 0.24966s