├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── atests ├── google.json ├── test.robot └── test_alt_library.robot ├── docs └── AxeLibrary.html ├── setup.py └── src └── AxeLibrary ├── __init__.py ├── axe.py └── version.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/README.md -------------------------------------------------------------------------------- /atests/google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/atests/google.json -------------------------------------------------------------------------------- /atests/test.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/atests/test.robot -------------------------------------------------------------------------------- /atests/test_alt_library.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/atests/test_alt_library.robot -------------------------------------------------------------------------------- /docs/AxeLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/docs/AxeLibrary.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/setup.py -------------------------------------------------------------------------------- /src/AxeLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/src/AxeLibrary/__init__.py -------------------------------------------------------------------------------- /src/AxeLibrary/axe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adiralashiva8/robotframework-axelibrary/HEAD/src/AxeLibrary/axe.py -------------------------------------------------------------------------------- /src/AxeLibrary/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '0.1.5' --------------------------------------------------------------------------------