Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/datakurre/robotframework-wavelibrary
Accessibility validation library for Robot Framework based on WAVE Toolbar by WebAIM
https://github.com/datakurre/robotframework-wavelibrary
Last synced: 2 months ago
JSON representation
Accessibility validation library for Robot Framework based on WAVE Toolbar by WebAIM
- Host: GitHub
- URL: https://github.com/datakurre/robotframework-wavelibrary
- Owner: datakurre
- Created: 2013-05-25T05:25:40.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2018-07-16T21:14:23.000Z (over 6 years ago)
- Last Synced: 2024-11-02T09:32:10.221Z (3 months ago)
- Language: Python
- Size: 496 KB
- Stars: 9
- Watchers: 6
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGES.txt
Awesome Lists containing this project
README
WAVE-library for Robot Framework
================================WAVE is an accessibility analyzing service and Firefox add-on created by
WebAIM. This library provides a few Robot Framework resources for executing
automated analyzes with the Firefox add-on.(This package includes a Firefox profile with The WAVE Toolbar extension
pre-installed. The WAVE toolbar, its interface elements, design elements,
functionality, and underlying code are (c) WebAIM.)Installation
------------::
$ pip install robotframework-wavelibrary
Example test
------------::
*** Settings ***
Library WAVELibrary
Suite setup Open WAVE browser
Suite teardown Close all browsers*** Test Cases ***
Test single page
[Documentation] Single page test could interact with the target
... app as much as required and end with triggering
... the accessibility scan.
Go to http://www.plone.org/
Check accessibility errorsTest multiple pages
[Documentation] Template based test can, for example, take a list
... of URLs and perform accessibility scan for all
... of them. While regular test would stop for the
... first failure, template based test will just jump
... to the next URL (but all failures will be reported).
[Template] Check URL for accessibility errors
http://www.plone.org/
http://www.drupal.org/
http://www.joomla.org/
http://www.wordpress.org/Running
-------::
$ pybot demo.robot
`Read the docs for more detailed information. `_