Metadata-Version: 2.1
Name: arjuna
Version: 0.9.13
Summary: Arjuna is a Python based test automation framework developed by Rahul Verma (www.rahulverma.net).
Home-page: https://rahulverma.net
Author: Rahul Verma
Author-email: 
License: Apache License, Version 2.0
Description: # Arjuna
        
        Arjuna is a Python based test automation framework developed by Rahul Verma (www.rahulverma.net). Rahul has implemented smaller variants of features in Arjuna across frameworks and organizations, or given advise around it. However Arjuna being a generic library has the most complete implementation of his ideas, away from project specific contexts and constraints.
        
        Arjuna uses **[pytest](https://docs.pytest.org/en/latest/)** as its recommended test engine. Arjuna also provides its markup for some common use cases on top of pytest. If you like, you can make use of Arjuna with any other test engine or custom frameworks as well.
        
        You'd need Python 3.5+ to make use of Arjuna.
        
        Note: On Linux, the built-in Python3 build has issues with the Python's built-in enum module which is heavily used in Arjuna. One alternative is to install ActiveState Python on linux. Advanced users can go for installing a custom Python build.
        
        ## Tutorial
        
        ### 1. Arjuna Installation
        
        1. Download and install latest Python (3.5+) from https://python.org
            * If you are insterested to learn python Following are links for tutorials and docs.
            + https://docs.python.org/3.7/tutorial/index.html
            + https://docs.python.org/3.7/index.html
        2. Confirm the python version installed by running the command `python --version`. If expected version in not shown, fix this by looking into PATH variables and/or to see whether you have multiple versions of Python installed.
        3. Install Arjuna using the following command
            * `pip install arjuna`
        
        You can find the example code in [arjex project](https://github.com/rahul-verma/arjuna/tree/master/arjuna-samples/arjex).
        
        ### 2. Arjuna - Getting Started
        
        1. [Project Structure](https://github.com/rahul-verma/arjuna/blob/master/docs/start/ProjectStructure.md)
        2. [Writing Your First Test](https://github.com/rahul-verma/arjuna/blob/master/docs/start/WritingFirstTest.md)
        
        ### 3. Arjuna's Configuration System
        
        1. [Configuration](https://github.com/rahul-verma/arjuna/blob/master/docs/config/Configuration.md)
        2. [project.conf - Project Level Configuration](https://github.com/rahul-verma/arjuna/blob/master/docs/config/ProjectConf.md)
        3. [Configuration Builder - Creating Custom Configurations](https://github.com/rahul-verma/arjuna/blob/master/docs/config/ConfigBuilder.md)
        4. [Defining and Handling User Options](https://github.com/rahul-verma/arjuna/blob/master/docs/config/UserOptions.md)
        5. [Using .conf files with Configuration Builder](https://github.com/rahul-verma/arjuna/blob/master/docs/config/UsingFilesInConfigBuilder.md)
        6. [The Magic `C` Function](https://github.com/rahul-verma/arjuna/blob/master/docs/config/TheCMagicFunction.md)
        7. [Environments and Dynamic Configurations](https://github.com/rahul-verma/arjuna/blob/master/docs/config/EnvironmentsAndDynamicConfigurations.md)
        
        
        ### 4. Data Driven Testing and Contextual Data References
        
        1. [Data Driven Testing](https://github.com/rahul-verma/arjuna/blob/master/docs/data/DataDrivenTesting.md)
        2. [Driving with Single or Multiple Data Records](https://github.com/rahul-verma/arjuna/blob/master/docs/data/DataRecords.md)
        3. [Driving with Data Functions](https://github.com/rahul-verma/arjuna/blob/master/docs/data/DataFunctions.md)
        4. [Driving with Data Classes](https://github.com/rahul-verma/arjuna/blob/master/docs/data/DataClasses.md)
        5. [Driving with Data Files](https://github.com/rahul-verma/arjuna/blob/master/docs/data/DataFiles.md)
        6. [Driving with Multiple Data Sources](https://github.com/rahul-verma/arjuna/blob/master/docs/data/MultipleDataSources.md)
        7. [Contextual Data References and the Magic `R` Function](https://github.com/rahul-verma/arjuna/blob/master/docs/data/ContextualDataReferences.md)
        8. [Excel Data References](https://github.com/rahul-verma/arjuna/blob/master/docs/data/ExcelDataReferences.md)
        
        ### 5. Localization of Strings
        
        1. [Excel Localizer and The Magic `L` Function](https://github.com/rahul-verma/arjuna/blob/master/docs/l10/ExcelLocalizerAndTheLMaficFunction.md)
        2. [Json Localizer](https://github.com/rahul-verma/arjuna/blob/master/docs/l10/JsonLocalizer.md)
        3. [Strict vs Non-Strict Mode](https://github.com/rahul-verma/arjuna/blob/master/docs/l10/StrictNonStrictMode.md)
        
        ### 6. Basic Web UI Automation
        
        1. [Getting Started with WebApp](https://github.com/rahul-verma/arjuna/blob/master/docs//webui_basics/WebApp.md)
        2. [Gui Element Locators - Using ID, Name, Tag, Class, Link Text, Partial Link Text](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_basics/GuiElementBasicLocators.md)
        3. [Gui Element Locators - Using XPath](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_basics/UsingXPath.md)
        4. [Gui Element Locators - Using CSS Selectors](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_basics/UsingCSSSelectors.md)
        5. [Gui Element Locators - Using Arjuna's Locator Extensions](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_basics/ArjunaLocatorExtensions.md)
        6. [Basic Interactions with a Gui Element](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_basics/BasicInteractions.md)
        7. [Concise Basic Interactions with a Gui Element](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_basics/ConciseBasicInteractions.md)
        
        ### 7. Basics of Gui Namespace (GNS) - Externalizing Identifiers
        1. [What is Gui Namespace (GNS)](https://github.com/rahul-verma/arjuna/blob/master/docs/gns_basics/GuiNamespace.md)
        2. [Externalizing ID, Name, Tag, Class, Link Text, Partial Link Text](https://github.com/rahul-verma/arjuna/blob/master/docs/gns_basics/BasicLocators.md)
        3. [Externalizing XPath](https://github.com/rahul-verma/arjuna/blob/master/docs/gns_basics/XPath.md)
        4. [Externalizing CSS Selectors](https://github.com/rahul-verma/arjuna/blob/master/docs/gns_basics/CSSSelectors.md)
        5. [Externalizing Arjuna's Locator Extensions](https://github.com/rahul-verma/arjuna/blob/master/docs/gns_basics/ArjunaLocatorExtensions.md)
        
        
        ### 8. Advanced Web UI Automation
        1. [Matching Multiple Elements as GuiMultiElement](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_adv/GuiMultiElement.md)
        2. [Handling Default HTML Select](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_adv/HTMLSelect.md)
        3. [Handling Default HTML Radio Group](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_adv/HTMLRadioGroup.md)
        4. Finding Nested Elements
        5. Alternative and Dynamic Identifiers
        6. Executing JavaScript
        7. Alerts, Windows, Frames
        8. Configuraing Interactions with GuiInteractionConfig
        9. Handling Custom DropDowns
        10. Retrieving Source code with GuiSource
        
        ### 9. Advanced Gui Namespace Constructs
        1. Element Templates - Multi Element, Dropdown and Radio Group
        2. Creating Your Own intra-GNS identifiers
        3. Creating Your Own Global Identifiers for use in code as well as GNS files
        
        ### 10. Gui Abstraction - GNS, App, Page, Widget and Gui Elements
        
        1. [Thinking Procedurally -Creating Reusable Module](https://github.com/rahul-verma/arjuna/blob/master/docs/webui_basics/ThinkingProcedurally.md)
        2. [Creating App Class](https://github.com/rahul-verma/arjuna/blob/master/docs/gui_abstraction/AppClass.md)
        3. [App Object Model](https://github.com/rahul-verma/arjuna/blob/master/docs/gui_abstraction/AppObjectModel.md)
        4. [App-Page Object Model](https://github.com/rahul-verma/arjuna/blob/master/docs/gui_abstraction/AppPageObjectModel.md)
        5. [App-Page-Section Object Model](https://github.com/rahul-verma/arjuna/blob/master/docs/gui_abstraction/AppPageSectionObjectModel.md)
        6. [Gui and Its Loading Model in Arjuna](https://github.com/rahul-verma/arjuna/blob/master/docs/gui_abstraction/GuiLoadingModel.md)
        
        ## Reference
        1. Command Line Options
        
        ### Miscellaneous
        1. Using Arjuna With Your Test Framework
        
Keywords: arjuna selenium testing automation page-object data-driven
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Software Development :: Testing
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Description-Content-Type: text/markdown
