testability-driver-qt-sut-plugin 1.2.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/application.rb +16 -6
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/behaviour.rb +86 -12
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/configure_behaviour.rb +1 -1
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/events.rb +5 -3
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/file_transfer.rb +15 -0
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/fixture.rb +110 -76
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/gesture.rb +125 -69
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/sut.rb +28 -19
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/synchronization.rb +143 -24
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/widget.rb +25 -10
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/agent.rb +54 -0
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/application.rb +1 -0
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/configure_command.rb +32 -39
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/find_object.rb +8 -19
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/fixture.rb +35 -22
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/group.rb +31 -29
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/infologger_command.rb +23 -32
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/key_sequence.rb +44 -61
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/screen_capture.rb +22 -23
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/tap.rb +39 -28
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/version.rb +14 -24
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/widget.rb +39 -42
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/adapter.rb +93 -120
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/communication.rb +95 -75
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/util/find_object_generator.rb +6 -8
- data/lib/testability-driver-plugins/testability-driver-qt-sut-plugin/util/message_composer.rb +1 -1
- data/xml/behaviour/qt.xml +6 -0
- data/xml/keymap/win.xml +174 -0
- data/xml/template/qt.xml +128 -117
- metadata +60 -75
data/xml/template/qt.xml
CHANGED
@@ -1,129 +1,140 @@
|
|
1
|
-
|
2
|
-
|
3
1
|
<templates>
|
4
2
|
|
5
|
-
|
3
|
+
<template name="qt" inherits="sut_generic;qttas_server;qt_fixtures;switchbox;flash"> <!-- qt ("qt sut abstraction") inherits sut_generic and qttas_server template values -->
|
6
4
|
|
7
|
-
|
8
|
-
|
5
|
+
<!-- mapping for qt sut plugin & implementation, value can be either gem name or absolute path to plugin/sut.rb -->
|
6
|
+
<parameter name="sut_plugin" value="testability-driver-qt-sut-plugin" />
|
9
7
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
8
|
+
<!-- default parameters for each qt sut -->
|
9
|
+
<parameter name="type" value="QT" /> <!-- overwrites default value -->
|
10
|
+
<parameter name="product" value="qt_windows" /> <!-- overwrites default value -->
|
11
|
+
<parameter name="version" value="200839" /> <!-- overwrites default value -->
|
12
|
+
<parameter name="env" value="qt" /> <!-- overwrites default value -->
|
15
13
|
|
16
|
-
|
17
|
-
|
14
|
+
<!-- device input type (e.g. key, touch) -->
|
15
|
+
<parameter name="input_type" value="touch" /> <!-- overwrites default value -->
|
18
16
|
|
19
|
-
|
20
|
-
|
17
|
+
<!-- keymap definitions -->
|
18
|
+
<keymap xml_file="keymaps/qt.xml" env="qt" />
|
21
19
|
|
22
|
-
|
23
|
-
|
20
|
+
<!-- gesture defaults -->
|
21
|
+
<parameter name="gesture_flick_distance" value="150" />
|
24
22
|
|
25
|
-
|
26
|
-
|
27
|
-
|
23
|
+
<!-- pixels per second -->
|
24
|
+
<parameter name="gesture_flick_speed" value="700" />
|
25
|
+
<parameter name="gesture_drag_speed" value="300" />
|
28
26
|
|
29
|
-
|
30
|
-
|
27
|
+
<!-- move the pointer before a tap if true -->
|
28
|
+
<parameter name="in_tap_move_pointer" value="false" />
|
31
29
|
|
32
|
-
<!--
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
<!--
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
<
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
30
|
+
<!-- will try to ensure that the item is visible before an operation -->
|
31
|
+
<parameter name="ensure_visible" value="false" />
|
32
|
+
<parameter name="ensure_qml_visible" value="false" />
|
33
|
+
|
34
|
+
|
35
|
+
<!-- use tap_screen operation in tap command. Sends the tap to the system (e.g. via X calls) and does not use Qt Events-->
|
36
|
+
<parameter name="use_tap_screen" value="false" />
|
37
|
+
|
38
|
+
<!-- Ensure that the event is received by the receiving object for a behavior -->
|
39
|
+
<parameter name="ensure_event" value="false"/>
|
40
|
+
|
41
|
+
<!--
|
42
|
+
The event type to use when interacting with the ui. Possible values are Mouse = 0, Touch = 1, Both =2.
|
43
|
+
When set to 0 (mouse) only mouse events are sent (e.g. tap will result in mousepress and mouserelease events)
|
44
|
+
When set to 1 (touch) only touch events are sent (e.g. tap will result in touchbegin and touchend events)
|
45
|
+
When set to 2 both mouse and touch events are sent.
|
46
|
+
|
47
|
+
Note: When using multitouch behaviours this setting has no affect. Only touch events are sent.
|
48
|
+
Default is set to two so both events will be sent. Note that if set to 0 or 1 then only the
|
49
|
+
specified events is sent. e.g. Some components may not handle touch events so setting to 1 maybe be dangerous.
|
50
|
+
-->
|
51
|
+
<parameter name="event_type" value="2" />
|
52
|
+
|
53
|
+
<parameter name="localisation_server_database_tablename" value="tr_qt_default" /> <!-- overwrites default value -->
|
54
|
+
|
55
|
+
<!-- recording will detect movements together with tap up and down as taps if the movement is smaller -->
|
56
|
+
<parameter name="record_move_treshold" value="5" />
|
57
|
+
<!-- tap which are longer than this will be set as long taps (tap down, wait, tap up)-->
|
58
|
+
<parameter name="record_tap_time_treshold" value="1" />
|
59
|
+
|
60
|
+
<!-- possible values none, static, dynamic -->
|
61
|
+
<parameter name="filter_type" value="dynamic"/>
|
62
|
+
|
63
|
+
<!--
|
64
|
+
Filtering settings, use them to make the xml smaller. Do not use whitelists and blacklists combined as it may cause
|
65
|
+
unwanted results. Taken out from default settings. Attribute lists are only valid when filter_type is static
|
66
|
+
-->
|
67
|
+
|
68
|
+
<!--
|
69
|
+
<parameter name="attribute_blacklist" value="droppable,hoverable,obscured,under-mouse,acceptDrops,accessibleDescription,accessibleName,cursor,autoFillBackground,bold,capitalization,focusPolicy,inputMethodHints,italic,kerning,letterSpacing,locale,mouseTracking,overline,palette,sizeHint,sizeIncrement,sizePolicy,strikeOut,statusTip,styleSheet,updatesEnabled,whatsThis,windowFilePath,windowModality,windowModified,windowOpacity,wordSpacing,transformOriginPoint,windowFlags,maximumSize,minimumSize,opacity,pixelSize,pointSize,parent,contextMenuPolicy,baseSize,childrenRect,childrenRegion,minimumSize,maximumSize,minimumHeight,maximumHeight,maximumWidth,layoutDirection,minimumSizeHint,normalGeometry"/>
|
70
|
+
|
71
|
+
<parameter name="attribute_whitelist" value="text"/>
|
72
|
+
<parameter name="filter_properties" value="true"/>
|
73
|
+
<parameter name="plugin_blacklist" value="layouttraverse,webkittraverse,viewitemtraverse"/>
|
74
|
+
<parameter name="plugin_whitelist" value="qttraverse,webkittraverse"/>
|
75
|
+
-->
|
76
|
+
|
77
|
+
</template>
|
78
|
+
|
79
|
+
<template name="qttas_server">
|
80
|
+
<!-- Assume that QtTAS server is running at localhost:55535 -->
|
81
|
+
<parameter name="qttas_server_ip" value="127.0.0.1" />
|
82
|
+
<parameter name="qttas_server_port" value="55535" />
|
83
|
+
<!-- Timeout between plugin and qttasserver -->
|
84
|
+
<parameter name="qttas_plugin_timeout" value="10000" />
|
85
|
+
<!-- QT Server port -->
|
86
|
+
<parameter name="qt_tcp_server_port" value="1514" /> <!-- JKo: what is this?? is it actually used anywhere? -->
|
87
|
+
</template>
|
88
|
+
|
89
|
+
<template name="qt_fixtures">
|
90
|
+
<fixtures>
|
91
|
+
<fixture name="signal" plugin="tassignal" env="qt"/>
|
92
|
+
<fixture name="qt" plugin="tasfixture" env="qt"/>
|
93
|
+
<fixture name="dialog" plugin="dialogfixture" env="qt"/>
|
94
|
+
<fixture name="file" plugin="filefixture" env="qt"/>
|
95
|
+
<fixture name="fps" plugin="fpsfixture" env="qt"/>
|
96
|
+
<fixture name="popup" plugin="popupfixture" env="qt"/>
|
97
|
+
<fixture name="tap_object" plugin="tapfixture" env="qt"/>
|
98
|
+
<fixture name="mobilitysysinfo" plugin="mobilitysysinfofixture" env="qt"/>
|
99
|
+
<fixture name="contact" plugin="contactfixture" env="qt"/>
|
100
|
+
<fixture name="launch" plugin="launchfixture" env="qt"/>
|
101
|
+
<fixture name="setting" plugin="settingfixture" env="qt"/>
|
102
|
+
</fixtures>
|
103
|
+
</template>
|
104
|
+
|
105
|
+
<template name="switchbox">
|
106
|
+
<!-- switchbox control commands default is for windows environments using foobox -->
|
107
|
+
<parameter name="switchbox_timeout_between_command_sequence" value="5" /> <!-- timeout in seconds between the switchbox commands -->
|
108
|
+
<parameter name="switchbox_powerdown_command_sequence" value="foobox USB0|foobox -VBAT1" /> <!-- if the device is connected to other than port 1 then change accordingly -->
|
109
|
+
<parameter name="switchbox_powerdown_command_success_string" value="" /> <!-- If no error then no string is displayed -->
|
110
|
+
<parameter name="switchbox_powerup_command_sequence" value="foobox +VBAT1|foobox USB1" /> <!-- if the device is connected to other than port 1 then change accordingly -->
|
111
|
+
<parameter name="switchbox_powerup_command_success_string" value="" /> <!-- If no error then no string is displayed -->
|
112
|
+
<parameter name="switchbox_sleep_before_powerup_in_reboot" value="5" /> <!-- need to wait for a couple of seconds before powerup after powerdown -->
|
113
|
+
<parameter name="switchbox_sleep_after_powerup_in_reboot" value="60" /> <!-- need to wait for the device to come up after poweup -->
|
114
|
+
<parameter name="switchbox_commands_after_powerup_in_reboot" value="" /> <!-- commands you want to be executed when polling for a device during powerup -->
|
115
|
+
</template>
|
116
|
+
|
117
|
+
<template name="flash">
|
118
|
+
<!-- flash control commands default is for windows environments using -->
|
119
|
+
<parameter name="flash_attempts" value="1" /> <!-- how many times will attempt to flash the device -->
|
120
|
+
<parameter name="timeout_between_command_sequence" value="25" /> <!-- timeout in seconds between the switchbox and commands before and after flash -->
|
121
|
+
<parameter name="switchbox_commands_before_flash" value="" /> <!-- commands you want to be executed before flash, commands are sparated with | -->
|
122
|
+
<parameter name="commands_before_flash" value="" /> <!-- flash commands for before flash, commands are sparated with | -->
|
123
|
+
<parameter name="flash_command" value="" /> <!-- intial flash command for -->
|
124
|
+
<parameter name="optional_parameters_after_flashing" value="/nm" /> <!-- optional flash parameters -->
|
125
|
+
<parameter name="flash_images" value="/tmp/image.bin /tmp/image2.bin" /> <!-- images to flash -->
|
126
|
+
<parameter name="switchbox_commands_after_failed_flash" value="" /> <!-- commands for switchbox after failed flash, commands are sparated with | -->
|
127
|
+
<parameter name="commands_after_failed_flash" value="" /> <!-- commands for after failed flash, commands are sparated with | -->
|
128
|
+
<parameter name="command_after_flash" value="" /> <!-- flash command for after flash, commands are sparated with | -->
|
129
|
+
<parameter name="switchbox_commands_after_flash" value="" /> <!-- commands you want to be executed after flash, commands are sparated with | -->
|
130
|
+
</template>
|
131
|
+
|
132
|
+
<template name="win" inherits="qt">
|
133
|
+
<parameter name="qttas_server_port" value="11000" />
|
134
|
+
<parameter name="win_native" value="true" />
|
135
|
+
<parameter name="use_find_object" value="true" />
|
136
|
+
<parameter name="io_deflate_service_request" value="false" />
|
137
|
+
<keymap xml_file="keymaps/win.xml" env="qt" />
|
138
|
+
</template>
|
128
139
|
|
129
140
|
</templates>
|
metadata
CHANGED
@@ -1,13 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: testability-driver-qt-sut-plugin
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
prerelease:
|
6
|
-
segments:
|
7
|
-
- 1
|
8
|
-
- 2
|
9
|
-
- 1
|
10
|
-
version: 1.2.1
|
4
|
+
version: 1.3.0
|
11
5
|
platform: ruby
|
12
6
|
authors:
|
13
7
|
- TDriver team
|
@@ -15,24 +9,19 @@ autorequire:
|
|
15
9
|
bindir: bin
|
16
10
|
cert_chain: []
|
17
11
|
|
18
|
-
date: 2011-
|
12
|
+
date: 2011-08-17 00:00:00 +03:00
|
13
|
+
default_executable:
|
19
14
|
dependencies:
|
20
15
|
- !ruby/object:Gem::Dependency
|
21
16
|
name: testability-driver
|
22
|
-
|
23
|
-
|
24
|
-
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
20
|
requirements:
|
26
21
|
- - ">="
|
27
22
|
- !ruby/object:Gem::Version
|
28
|
-
hash: 57
|
29
|
-
segments:
|
30
|
-
- 0
|
31
|
-
- 8
|
32
|
-
- 3
|
33
23
|
version: 0.8.3
|
34
|
-
|
35
|
-
version_requirements: *id001
|
24
|
+
version:
|
36
25
|
description:
|
37
26
|
email: testabilitydriver@nokia.com
|
38
27
|
executables: []
|
@@ -43,70 +32,72 @@ extra_rdoc_files: []
|
|
43
32
|
|
44
33
|
files:
|
45
34
|
- env.rb
|
46
|
-
- lib/testability-driver-
|
47
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin
|
48
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/attribute.rb
|
49
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/behaviour.rb
|
50
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/configure_behaviour.rb
|
51
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/events.rb
|
52
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/file_transfer.rb
|
53
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/find.rb
|
54
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/fixture.rb
|
55
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/fps.rb
|
56
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/gesture.rb
|
57
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/infologger.rb
|
58
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/key_press.rb
|
59
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/locale_db.rb
|
60
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/method.rb
|
61
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/multitouch.rb
|
35
|
+
- lib/testability-driver-qt-sut-plugin.rb
|
36
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin.rb
|
62
37
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/os.rb
|
38
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/view_item.rb
|
63
39
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/qt_api_method.rb
|
64
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/
|
40
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/treewidgetitemcolumn.rb
|
41
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/find.rb
|
42
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/events.rb
|
43
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/infologger.rb
|
44
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/file_transfer.rb
|
65
45
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/screen_capture.rb
|
66
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/
|
46
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/widget.rb
|
47
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/record.rb
|
48
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/key_press.rb
|
67
49
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/sut.rb
|
68
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/synchronization.rb
|
69
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/treewidgetitemcolumn.rb
|
70
50
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/type_text.rb
|
71
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/
|
51
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/configure_behaviour.rb
|
52
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/fixture.rb
|
53
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/settings.rb
|
54
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/attribute.rb
|
55
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/application.rb
|
56
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/behaviour.rb
|
57
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/action.rb
|
58
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/gesture.rb
|
59
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/method.rb
|
72
60
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/webkit.rb
|
73
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/
|
74
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
75
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
76
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
77
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
78
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
79
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
80
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
81
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
82
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
83
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
84
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/application.rb
|
85
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/configure_command.rb
|
61
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/synchronization.rb
|
62
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/locale_db.rb
|
63
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/multitouch.rb
|
64
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/behaviours/fps.rb
|
65
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/communication.rb
|
66
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/controller.rb
|
67
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/sut/adapter.rb
|
68
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/util/find_object_generator.rb
|
69
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/util/widget.rb
|
70
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/util/fixture_parameter.rb
|
71
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/util/message_composer.rb
|
86
72
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/find_object.rb
|
87
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/fixture.rb
|
88
73
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/group.rb
|
89
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/infologger_command.rb
|
90
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/key_sequence.rb
|
91
74
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/screen_capture.rb
|
92
75
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/tap.rb
|
93
76
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/version.rb
|
94
77
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/widget.rb
|
78
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/infologger_command.rb
|
79
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/configure_command.rb
|
80
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/fixture.rb
|
81
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/application.rb
|
82
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/key_sequence.rb
|
83
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/controllers/agent.rb
|
95
84
|
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/plugin.rb
|
96
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
97
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
98
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
99
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
100
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
101
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
102
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/
|
103
|
-
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin.rb
|
104
|
-
- lib/testability-driver-qt-sut-plugin.rb
|
105
|
-
-
|
85
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/find_object.rb
|
86
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/group.rb
|
87
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/tap.rb
|
88
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/version.rb
|
89
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/widget.rb
|
90
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/infologger_command.rb
|
91
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/qt.rb
|
92
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/configure_command.rb
|
93
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/action.rb
|
94
|
+
- lib/testability-driver-plugins/testability-driver-qt-sut-plugin/commands/drag.rb
|
106
95
|
- xml/defaults/sut_qt.xml
|
96
|
+
- xml/behaviour/qt.xml
|
97
|
+
- xml/keymap/win.xml
|
107
98
|
- xml/keymap/qt.xml
|
108
99
|
- xml/template/qt.xml
|
109
|
-
|
100
|
+
has_rdoc: true
|
110
101
|
homepage: http://gitorious.org/tdriver
|
111
102
|
licenses: []
|
112
103
|
|
@@ -116,27 +107,21 @@ rdoc_options: []
|
|
116
107
|
require_paths:
|
117
108
|
- lib/testability-driver-plugins/
|
118
109
|
required_ruby_version: !ruby/object:Gem::Requirement
|
119
|
-
none: false
|
120
110
|
requirements:
|
121
111
|
- - ">="
|
122
112
|
- !ruby/object:Gem::Version
|
123
|
-
hash: 3
|
124
|
-
segments:
|
125
|
-
- 0
|
126
113
|
version: "0"
|
114
|
+
version:
|
127
115
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
128
|
-
none: false
|
129
116
|
requirements:
|
130
117
|
- - ">="
|
131
118
|
- !ruby/object:Gem::Version
|
132
|
-
hash: 3
|
133
|
-
segments:
|
134
|
-
- 0
|
135
119
|
version: "0"
|
120
|
+
version:
|
136
121
|
requirements: []
|
137
122
|
|
138
123
|
rubyforge_project:
|
139
|
-
rubygems_version: 1.
|
124
|
+
rubygems_version: 1.3.5
|
140
125
|
signing_key:
|
141
126
|
specification_version: 3
|
142
127
|
summary: Testability Driver - Testability Driver Interface Qt SUT plugin
|