UsingDesktopTestingLibrary
Revision 2 as of 2008-09-11 09:23:20
Clear message
1 # Main LDTP python wrappers
2 from ooldtp import *
3 from ldtp import *
4 from ldtputils import *
5
6 # The main library in the testing-library for Ubuntu
7 from ubuntutesting.ubuntu import *
8
9 try:
10
11 # Gedit is the main class for GEdit tests.
12 gedit = GEdit()
13
14 # Open Gedit application and wait for existance
15 gedit.open()
16
17 # Write the selected text
18 gedit.write_text("Hello World!")
19
20 except LdtpExecutionError, msg:
21 raise