Test your websites with this simple GUI based scripted webtester. Generate simple testscripts directly from surfng on the webpage, enhance them with your commands, with variables, loops, checks, … and finally run automated web tests.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Marc Wäckerlin
7b9b1f379e
|
5 years ago | |
---|---|---|
debian | 8 years ago | |
doc | 5 years ago | |
docker | 5 years ago | |
etc | 5 years ago | |
scripts | 6 years ago | |
src | 5 years ago | |
test | 7 years ago | |
AUTHORS | 9 years ago | |
COPYING | 6 years ago | |
ChangeLog | 6 years ago | |
INSTALL | 5 years ago | |
NEWS | 10 years ago | |
README.md | 6 years ago | |
autogen.sh | 9 years ago | |
ax_check_qt.m4 | 5 years ago | |
ax_cxx_compile_stdcxx.m4 | 5 years ago | |
ax_init_standard_project.m4 | 5 years ago | |
bootstrap.sh | 5 years ago | |
build-in-docker.conf | 8 years ago | |
build-in-docker.sh | 5 years ago | |
build-resource-file.sh | 9 years ago | |
configure.ac | 5 years ago | |
dependency-graph.sh | 7 years ago | |
icon.png | 7 years ago | |
mac-create-app-bundle.sh | 5 years ago | |
makefile.am | 5 years ago | |
makefile_test.inc.am | 8 years ago | |
resolve-debbuilddeps.sh | 6 years ago | |
resolve-rpmbuilddeps.sh | 5 years ago | |
rpmsign.exp | 8 years ago | |
sql-to-dot.sed | 8 years ago | |
template.sh | 5 years ago | |
webtester.desktop.in | 9 years ago | |
webtester.spec.in | 6 years ago |
README.md
Framework for Automated Web Application Testing
There is a test GUI including browser to record user input while he surfs on the web and a test runner to run (recorded) test scripts. The tests can be integrated e.g. in a jenkins build job. It has been tested on Wordpress, Dokuwiki and Joomla pages. Joomla is difficult due to Javascript-Moo-Tools pollution. There's some specific support, that may help a bit, but to test Joomla sites, you need a lot of experience. Concluson: Avoid Joomla.
Sample Script to search my old homepage on Google, klick on the link, there click on tab «Computer» and check the title for the text «Marcs Computerblog»:
load https://google.com
expect loadStarted
expect urlChanged
expect loadFinished true
do input[name="q"]
this.value='Marc Wäckerlin';
click input[name="btnG"]
expect loadStarted
expect urlChanged
expect loadFinished true
click a[href^="/url?q=https://marc.waeckerlin.org/&"]
expect loadStarted
expect urlChanged https://marc.waeckerlin.org/doku.php
expect loadFinished true
click a[href="/computer/index"]
expect loadStarted
expect urlChanged https://marc.waeckerlin.org/computer/index
expect loadFinished true
exists h1.sectionedit1 -> Marcs Computerblog