diff options
Diffstat (limited to 'evolution/addalarm.py')
-rwxr-xr-x | evolution/addalarm.py | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/evolution/addalarm.py b/evolution/addalarm.py deleted file mode 100755 index 414d525..0000000 --- a/evolution/addalarm.py +++ /dev/null @@ -1,48 +0,0 @@ -# -# Linux Desktop Testing Project http://www.gnomebangalore.org/ldtp -# -# Author: -# Sheetal <svnayak18@yahoo.com> -# -# Copyright 2004 Novell, Inc. -# -# This test script is free software; you can redistribute it and/or -# modify it under the terms of the GNU Library General Public -# License as published by the Free Software Foundation; either -# version 2 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Library General Public License for more details. -# -# You should have received a copy of the GNU Library General Public -# License along with this library; if not, write to the -# Free Software Foundation, Inc., 59 Temple Place - Suite 330, -# Boston, MA 02111-1307, USA. -# - -#Add Alarm -s1 = 'Unable to get gui handle' -def funct_alarm(num2): - try: - - comboselect('dlgAddAlarm','cmbPop','Play a sound') - setvalue('dlgAddAlarm','sbtnnum',num2) - comboselect('dlgAddAlarm','cmbmin','hour(s)') - comboselect('dlgAddAlarm','cmbbefore','after') - comboselect('dlgAddAlarm','cmbstart','end of appointment') - check('dlgAddAlarm','chkRepeatthealarm') - setvalue('dlgAddAlarm','sbtnnum1',num2) - setvalue('dlgAddAlarm','sbtnnum2',num2) - comboselect('dlgAddAlarm','cmbminutes','hours') - check('dlgAddAlarm','chkCustommessage') - click('dlgAddAlarm','btnOK') - - except error,msg: - if string.find(str(msg),s1) == -1: - print "File not found(nt cz of gui handle)...so stilll continuing " - -log('Open-Add-Alarm','teststart') -funct_alarm(num2) -log('Open-Add-Alarm','testend') |