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.
 
 
 
 
 
 

28 lines
654 B

## @id $Id$
## 1 2 3 4 5 6 7 8
## 45678901234567890123456789012345678901234567890123456789012345678901234567890
bin_SCRIPTS = webrunner webtester
BUILT_SOURCES = ${bin_SCRIPTS:%=makefile.%}
EXTRA_DIST = *.[ch]xx *.ui @PACKAGE_NAME@.pro
clean-local: ${bin_SCRIPTS:%=clean.%}
webrunner: make.webrunner
webtester: make.webtester
makefile.%:
qmake -o $@ -config debug -config ${@:makefile.%=%}
make.%: makefile.%
make -f ${<}
clean.%: makefile.%
make -f ${<} clean
CLEANFILES = ${bin_SCRIPTS}
DISTCLEANFILES = ${BUILT_SOURCES}
MAINTAINERCLEANFILES = makefile.in
.PHONY: make.* clean.*