├── docs ├── __init__.py ├── source │ ├── intro │ │ ├── index.rst │ │ ├── install.rst │ │ └── tutorial.rst │ ├── index.rst │ ├── lxml.rst │ ├── browsers.rst │ ├── ini.rst │ ├── Makefile │ └── conf.py ├── examples │ ├── templates │ │ ├── results.html │ │ └── index.html │ ├── alfajor.ini │ ├── test_simple.py │ ├── __init__.py │ └── webapp.py └── licenses │ ├── jquery.txt │ ├── lxml.txt │ ├── flatland.txt │ └── werkzeug.txt ├── tests ├── browser │ ├── images │ │ └── bread.jpg │ ├── templates │ │ ├── index.html │ │ ├── assign_cookie.html │ │ ├── ajax.html │ │ ├── assign_cookies.html │ │ ├── seq_d.html │ │ ├── seq_a.html │ │ ├── seq_b.html │ │ ├── seq_c.html │ │ ├── form_textareas.html │ │ ├── dom.html │ │ ├── form_multipart.html │ │ ├── form_radios.html │ │ ├── form_select.html │ │ ├── form_checkboxes.html │ │ ├── form_methods.html │ │ ├── waitfor.html │ │ ├── form_submit.html │ │ └── form_fill.html │ ├── alfajor.ini │ ├── __init__.py │ ├── test_dom.py │ ├── webapp.py │ ├── test_browser.py │ └── test_forms.py ├── client │ ├── alfajor.ini │ ├── __init__.py │ ├── test_basic.py │ └── webapp.py ├── __init__.py └── test_management.py ├── setup.cfg ├── MANIFEST.in ├── CHANGES ├── alfajor ├── browsers │ ├── __init__.py │ ├── zero.py │ ├── network.py │ ├── managers.py │ ├── _waitexpr.py │ ├── wsgi.py │ ├── selenium.py │ └── _lxml.py ├── runners │ ├── __init__.py │ └── nose.py ├── __init__.py ├── _compat.py ├── _config.py ├── utilities.py ├── _management.py └── apiclient.py ├── .gitignore ├── .hgignore ├── AUTHORS ├── scripts ├── alfajor-invoke └── ntest ├── README ├── setup.py └── LICENSE /docs/__init__.py: -------------------------------------------------------------------------------- 1 | # 2 | -------------------------------------------------------------------------------- /tests/browser/images/bread.jpg: -------------------------------------------------------------------------------- 1 | Ceci n'est pas une JPEG. 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [aliases] 2 | test = nosetests 3 | 4 | [nosetests] 5 | detailed-errors=1 6 | 7 | -------------------------------------------------------------------------------- /tests/browser/templates/index.html: -------------------------------------------------------------------------------- 1 |
hi there
2 | -------------------------------------------------------------------------------- /tests/browser/templates/assign_cookie.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |${request_id}
5 |${referrer}
6 | 7 |