UsingDesktopTestingLibrary
Differences between revisions 1 and 2
|
⇤ ← Revision 1 as of 2008-08-28 11:45:19
Size: 496
Comment:
|
Size: 607
Comment: page was renamed from Testing/Automation/LDTP/HowToUseTestingLibrary/Comparison/UsingDesktopTestingLibrary
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 1: | Line 1: |
| ## page was renamed from Testing/Automation/LDTP/HowToUseTestingLibrary/Comparison/UsingDesktopTestingLibrary |
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
Testing/Automation/Mago/DesktopTestingLibrary/Comparison/UsingDesktopTestingLibrary (last edited 2009-06-29 09:15:01 by 63)