+ first attempt to launch browsers automatically for automated tests

This commit is contained in:
cbonar 2008-08-31 21:04:41 +00:00
parent fdda7493c6
commit 3df53f7123
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#!/bin/sh
#set -vx
# Starts Firefox minimized to execute the tests in the background
# TODO ? start and stop the server before running the navigators to gather tests ?
kstart --iconify --keepbelow firefox -safe-mode -new-window $*
#ps --no-headers --ppid $$ -o pid
#trap "pkill -P $$;exit" INT TERM EXIT
#while [ true ]
#do
# sleep 1 # waiting for a signal
#done

View file

@ -0,0 +1,10 @@
#!/bin/sh
#set -vx
# Starts Konqueror minimized to execute the tests in the background
# TODO ? start and stop the server before running the navigators to gather tests ?
kstart --iconify --keepbelow konqueror $*
#trap "pkill -P $$;exit" INT TERM EXIT
#while [ true ]
#do
# sleep 1 # waiting for a signal
#done