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.
31 lines
639 B
31 lines
639 B
10 years ago
|
#-------------------------------------------------
|
||
|
#
|
||
|
# Project created by QtCreator 2014-11-26T10:04:37
|
||
|
#
|
||
|
#-------------------------------------------------
|
||
|
|
||
|
QT += core webkitwidgets
|
||
|
CONFIG += C++11
|
||
|
|
||
|
CODECFORSRC = UTF-8
|
||
|
CODECFORTR = UTF-8
|
||
|
|
||
|
QMAKE_LIBS+=-lxml-cxx
|
||
|
|
||
|
webtester {
|
||
|
QT += gui
|
||
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
TEMPLATE = app
|
||
|
TARGET = webtester
|
||
|
SOURCES = webtester.cxx
|
||
|
HEADERS = testgui.hxx commands.hxx webpage.hxx networkaccessmanager.hxx
|
||
|
FORMS = testgui.ui
|
||
|
}
|
||
|
|
||
|
webrunner {
|
||
|
TEMPLATE = app
|
||
|
TARGET = webrunner
|
||
|
SOURCES = webrunner.cxx
|
||
|
HEADERS = commands.hxx webpage.hxx networkaccessmanager.hxx
|
||
|
}
|