less-form 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source "http://ruby.taobao.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ gem "selenium-webdriver", "~> 2.31.0"
9
+
10
+ group :development do
11
+ gem "rdoc", "~> 3.12"
12
+ gem "bundler", "~> 1.0.0"
13
+ gem "jeweler", "~> 1.8.4"
14
+ gem "rspec", "~> 2.13.0"
15
+ gem "selenium-webdriver", "~> 2.31.0"
16
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,43 @@
1
+ GEM
2
+ remote: http://ruby.taobao.org/
3
+ specs:
4
+ childprocess (0.3.9)
5
+ ffi (~> 1.0, >= 1.0.11)
6
+ diff-lcs (1.2.2)
7
+ ffi (1.6.0-x86-mingw32)
8
+ git (1.2.5)
9
+ jeweler (1.8.4)
10
+ bundler (~> 1.0)
11
+ git (>= 1.2.5)
12
+ rake
13
+ rdoc
14
+ json (1.7.7)
15
+ multi_json (1.7.2)
16
+ rake (10.0.4)
17
+ rdoc (3.12.2)
18
+ json (~> 1.4)
19
+ rspec (2.13.0)
20
+ rspec-core (~> 2.13.0)
21
+ rspec-expectations (~> 2.13.0)
22
+ rspec-mocks (~> 2.13.0)
23
+ rspec-core (2.13.1)
24
+ rspec-expectations (2.13.0)
25
+ diff-lcs (>= 1.1.3, < 2.0)
26
+ rspec-mocks (2.13.0)
27
+ rubyzip (0.9.9)
28
+ selenium-webdriver (2.31.0)
29
+ childprocess (>= 0.2.5)
30
+ multi_json (~> 1.0)
31
+ rubyzip
32
+ websocket (~> 1.0.4)
33
+ websocket (1.0.7)
34
+
35
+ PLATFORMS
36
+ x86-mingw32
37
+
38
+ DEPENDENCIES
39
+ bundler (~> 1.0.0)
40
+ jeweler (~> 1.8.4)
41
+ rdoc (~> 3.12)
42
+ rspec (~> 2.13.0)
43
+ selenium-webdriver (~> 2.31.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 easonhan
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ less-form
2
+ ====================
3
+
4
+ Simple wrapper of form element for selenium-webdriver ruby binding.
5
+
6
+ Install
7
+ -------
8
+ gem install less-form
9
+
10
+ Usage
11
+ -----
12
+ require 'rubygems' #for 187
13
+ require 'less-form'
14
+
15
+ dr = Selenium::WebDriver.for :chrome
16
+ dr.get 'http://www.baidu.com'
17
+
18
+ form = LessForm::Form.new dr
19
+
20
+ form.text_field(:id,'kw').set 'selenium-webdriver'
21
+ dr.find_element(id: 'su').click
22
+
23
+ Contributing to less-form
24
+ -------------------------
25
+
26
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
27
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
28
+ * Fork the project.
29
+ * Start a feature/bugfix branch.
30
+ * Commit and push until you are happy with your contribution.
31
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
32
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
33
+
34
+ Copyright
35
+ ---------
36
+
37
+ Copyright (c) 2013 easonhan. See LICENSE.txt for
38
+ further details.
39
+
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = less-form
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to less-form
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2013 easonhan. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,44 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "less-form"
18
+ gem.homepage = "https://github.com/easonhan007/less-form"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{form element wrapper for selenium-webdriver}
21
+ gem.description = %Q{form element wrapper for selenium-webdriver, make your test code more readable and make your form element handing easy}
22
+ gem.email = "nbkhic@gmail.com"
23
+ gem.authors = ["easonhan"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ task :default => :spec
35
+
36
+ require 'rdoc/task'
37
+ Rake::RDocTask.new do |rdoc|
38
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
39
+
40
+ rdoc.rdoc_dir = 'rdoc'
41
+ rdoc.title = "less-form #{version}"
42
+ rdoc.rdoc_files.include('README*')
43
+ rdoc.rdoc_files.include('lib/**/*.rb')
44
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.2
data/chromedriver.log ADDED
@@ -0,0 +1,1218 @@
1
+ [0.000][INFO]: ChromeDriver 23.0.1240.0 D:\RailsInstaller\Ruby1.9.3\bin\chromedriver.exe
2
+ [0.654][FINE]: Initializing session with capabilities {
3
+ "browserName": "chrome",
4
+ "chrome.detach": true,
5
+ "chromeOptions": {
6
+ "detach": true
7
+ },
8
+ "cssSelectorsEnabled": true,
9
+ "javascriptEnabled": true,
10
+ "nativeEvents": false,
11
+ "platform": "ANY",
12
+ "rotatable": false,
13
+ "takesScreenshot": false,
14
+ "version": ""
15
+ }
16
+
17
+ [0.654][INFO]: Using named testing interface
18
+ [1.185][INFO]: Connected to Chrome successfully. Version: 25.0.1364.97
19
+ [1.200][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348)
20
+ [1.200][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348) with response {
21
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
22
+ "status": 0,
23
+ "value": {
24
+ "acceptSslCerts": false,
25
+ "applicationCacheEnabled": false,
26
+ "browserConnectionEnabled": false,
27
+ "browserName": "chrome",
28
+ "chrome.chromedriverVersion": "23.0.1240.0",
29
+ "chrome.nativeEvents": false,
30
+ "cssSelectorsEnabled": true,
31
+ "databaseEnabled": false,
32
+ "handlesAlerts": true,
33
+ "javascriptEnabled": true,
34
+ "locationContextEnabled": false,
35
+ "nativeEvents": true,
36
+ "platform": "windows",
37
+ "rotatable": false,
38
+ "takesScreenshot": true,
39
+ "version": "25.0.1364.97",
40
+ "webStorageEnabled": true
41
+ }
42
+ }
43
+
44
+ [1.210][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/url) with params {
45
+ "url": "file:///E:/code/gems/less-form/spec/html/form.html"
46
+ }
47
+
48
+ [1.210][FINER]: Waiting for all views to stop loading...
49
+ [1.214][FINER]: Done waiting for all views to stop loading
50
+ [1.534][FINER]: Waiting for all views to stop loading...
51
+ [1.538][FINER]: Done waiting for all views to stop loading
52
+ [1.538][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/url) with response {
53
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
54
+ "status": 0,
55
+ "value": {
56
+
57
+ }
58
+ }
59
+
60
+ [1.549][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
61
+ "using": "id",
62
+ "value": "text_field"
63
+ }
64
+
65
+ [1.549][FINER]: Waiting for all views to stop loading...
66
+ [1.550][FINER]: Done waiting for all views to stop loading
67
+ [1.575][FINER]: Waiting for all views to stop loading...
68
+ [1.575][FINER]: Done waiting for all views to stop loading
69
+ [1.575][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
70
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
71
+ "status": 0,
72
+ "value": {
73
+ "ELEMENT": ":wdc:1366447894923"
74
+ }
75
+ }
76
+
77
+ [1.583][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894923/value) with params {
78
+ "value": [ "ok" ]
79
+ }
80
+
81
+ [1.583][FINER]: Waiting for all views to stop loading...
82
+ [1.583][FINER]: Done waiting for all views to stop loading
83
+ [1.674][FINER]: Waiting for all views to stop loading...
84
+ [1.674][FINER]: Done waiting for all views to stop loading
85
+ [1.674][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894923/value) with response {
86
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
87
+ "status": 0,
88
+ "value": {
89
+
90
+ }
91
+ }
92
+
93
+ [1.684][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
94
+ "using": "id",
95
+ "value": "text_field"
96
+ }
97
+
98
+ [1.684][FINER]: Waiting for all views to stop loading...
99
+ [1.685][FINER]: Done waiting for all views to stop loading
100
+ [1.690][FINER]: Waiting for all views to stop loading...
101
+ [1.690][FINER]: Done waiting for all views to stop loading
102
+ [1.690][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
103
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
104
+ "status": 0,
105
+ "value": {
106
+ "ELEMENT": ":wdc:1366447894923"
107
+ }
108
+ }
109
+
110
+ [1.696][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894923/attribute/value)
111
+ [1.696][FINER]: Waiting for all views to stop loading...
112
+ [1.696][FINER]: Done waiting for all views to stop loading
113
+ [1.720][FINER]: Waiting for all views to stop loading...
114
+ [1.720][FINER]: Done waiting for all views to stop loading
115
+ [1.720][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894923/attribute/value) with response {
116
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
117
+ "status": 0,
118
+ "value": "ok"
119
+ }
120
+
121
+ [1.735][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
122
+ "using": "id",
123
+ "value": "text_field"
124
+ }
125
+
126
+ [1.735][FINER]: Waiting for all views to stop loading...
127
+ [1.735][FINER]: Done waiting for all views to stop loading
128
+ [1.740][FINER]: Waiting for all views to stop loading...
129
+ [1.740][FINER]: Done waiting for all views to stop loading
130
+ [1.740][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
131
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
132
+ "status": 0,
133
+ "value": {
134
+ "ELEMENT": ":wdc:1366447894923"
135
+ }
136
+ }
137
+
138
+ [1.746][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894923/attribute/value)
139
+ [1.746][FINER]: Waiting for all views to stop loading...
140
+ [1.746][FINER]: Done waiting for all views to stop loading
141
+ [1.756][FINER]: Waiting for all views to stop loading...
142
+ [1.756][FINER]: Done waiting for all views to stop loading
143
+ [1.756][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894923/attribute/value) with response {
144
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
145
+ "status": 0,
146
+ "value": "ok"
147
+ }
148
+
149
+ [1.768][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
150
+ "using": "id",
151
+ "value": "area"
152
+ }
153
+
154
+ [1.768][FINER]: Waiting for all views to stop loading...
155
+ [1.768][FINER]: Done waiting for all views to stop loading
156
+ [1.779][FINER]: Waiting for all views to stop loading...
157
+ [1.780][FINER]: Done waiting for all views to stop loading
158
+ [1.780][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
159
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
160
+ "status": 0,
161
+ "value": {
162
+ "ELEMENT": ":wdc:1366447894924"
163
+ }
164
+ }
165
+
166
+ [1.789][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894924/value) with params {
167
+ "value": [ "ok" ]
168
+ }
169
+
170
+ [1.789][FINER]: Waiting for all views to stop loading...
171
+ [1.789][FINER]: Done waiting for all views to stop loading
172
+ [1.859][FINER]: Waiting for all views to stop loading...
173
+ [1.860][FINER]: Done waiting for all views to stop loading
174
+ [1.860][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894924/value) with response {
175
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
176
+ "status": 0,
177
+ "value": {
178
+
179
+ }
180
+ }
181
+
182
+ [1.870][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
183
+ "using": "id",
184
+ "value": "area"
185
+ }
186
+
187
+ [1.870][FINER]: Waiting for all views to stop loading...
188
+ [1.870][FINER]: Done waiting for all views to stop loading
189
+ [1.875][FINER]: Waiting for all views to stop loading...
190
+ [1.875][FINER]: Done waiting for all views to stop loading
191
+ [1.875][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
192
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
193
+ "status": 0,
194
+ "value": {
195
+ "ELEMENT": ":wdc:1366447894924"
196
+ }
197
+ }
198
+
199
+ [1.881][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894924/attribute/value)
200
+ [1.881][FINER]: Waiting for all views to stop loading...
201
+ [1.881][FINER]: Done waiting for all views to stop loading
202
+ [1.907][FINER]: Waiting for all views to stop loading...
203
+ [1.907][FINER]: Done waiting for all views to stop loading
204
+ [1.907][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894924/attribute/value) with response {
205
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
206
+ "status": 0,
207
+ "value": "ok"
208
+ }
209
+
210
+ [1.912][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
211
+ "using": "id",
212
+ "value": "area"
213
+ }
214
+
215
+ [1.912][FINER]: Waiting for all views to stop loading...
216
+ [1.912][FINER]: Done waiting for all views to stop loading
217
+ [1.917][FINER]: Waiting for all views to stop loading...
218
+ [1.918][FINER]: Done waiting for all views to stop loading
219
+ [1.918][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
220
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
221
+ "status": 0,
222
+ "value": {
223
+ "ELEMENT": ":wdc:1366447894924"
224
+ }
225
+ }
226
+
227
+ [1.923][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894924/attribute/value)
228
+ [1.923][FINER]: Waiting for all views to stop loading...
229
+ [1.923][FINER]: Done waiting for all views to stop loading
230
+ [1.933][FINER]: Waiting for all views to stop loading...
231
+ [1.933][FINER]: Done waiting for all views to stop loading
232
+ [1.933][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894924/attribute/value) with response {
233
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
234
+ "status": 0,
235
+ "value": "ok"
236
+ }
237
+
238
+ [1.944][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
239
+ "using": "id",
240
+ "value": "radio1"
241
+ }
242
+
243
+ [1.945][FINER]: Waiting for all views to stop loading...
244
+ [1.945][FINER]: Done waiting for all views to stop loading
245
+ [1.956][FINER]: Waiting for all views to stop loading...
246
+ [1.956][FINER]: Done waiting for all views to stop loading
247
+ [1.956][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
248
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
249
+ "status": 0,
250
+ "value": {
251
+ "ELEMENT": ":wdc:1366447894925"
252
+ }
253
+ }
254
+
255
+ [1.966][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894925/click) with params {
256
+
257
+ }
258
+
259
+ [1.966][FINER]: Waiting for all views to stop loading...
260
+ [1.966][FINER]: Done waiting for all views to stop loading
261
+ [2.001][FINER]: Waiting for all views to stop loading...
262
+ [2.094][FINER]: Done waiting for all views to stop loading
263
+ [2.094][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894925/click) with response {
264
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
265
+ "status": 0,
266
+ "value": {
267
+
268
+ }
269
+ }
270
+
271
+ [2.097][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
272
+ "using": "id",
273
+ "value": "radio1"
274
+ }
275
+
276
+ [2.097][FINER]: Waiting for all views to stop loading...
277
+ [2.097][FINER]: Done waiting for all views to stop loading
278
+ [2.106][FINER]: Waiting for all views to stop loading...
279
+ [2.106][FINER]: Done waiting for all views to stop loading
280
+ [2.106][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
281
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
282
+ "status": 0,
283
+ "value": {
284
+ "ELEMENT": ":wdc:1366447894925"
285
+ }
286
+ }
287
+
288
+ [2.153][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894925/selected)
289
+ [2.153][FINER]: Waiting for all views to stop loading...
290
+ [2.153][FINER]: Done waiting for all views to stop loading
291
+ [2.178][FINER]: Waiting for all views to stop loading...
292
+ [2.178][FINER]: Done waiting for all views to stop loading
293
+ [2.178][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894925/selected) with response {
294
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
295
+ "status": 0,
296
+ "value": true
297
+ }
298
+
299
+ [2.190][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
300
+ "using": "id",
301
+ "value": "radio1"
302
+ }
303
+
304
+ [2.190][FINER]: Waiting for all views to stop loading...
305
+ [2.190][FINER]: Done waiting for all views to stop loading
306
+ [2.195][FINER]: Waiting for all views to stop loading...
307
+ [2.195][FINER]: Done waiting for all views to stop loading
308
+ [2.195][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
309
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
310
+ "status": 0,
311
+ "value": {
312
+ "ELEMENT": ":wdc:1366447894925"
313
+ }
314
+ }
315
+
316
+ [2.201][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894925/selected)
317
+ [2.201][FINER]: Waiting for all views to stop loading...
318
+ [2.201][FINER]: Done waiting for all views to stop loading
319
+ [2.211][FINER]: Waiting for all views to stop loading...
320
+ [2.211][FINER]: Done waiting for all views to stop loading
321
+ [2.211][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894925/selected) with response {
322
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
323
+ "status": 0,
324
+ "value": true
325
+ }
326
+
327
+ [2.223][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
328
+ "using": "id",
329
+ "value": "checkbox"
330
+ }
331
+
332
+ [2.223][FINER]: Waiting for all views to stop loading...
333
+ [2.223][FINER]: Done waiting for all views to stop loading
334
+ [2.235][FINER]: Waiting for all views to stop loading...
335
+ [2.235][FINER]: Done waiting for all views to stop loading
336
+ [2.235][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
337
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
338
+ "status": 0,
339
+ "value": {
340
+ "ELEMENT": ":wdc:1366447894926"
341
+ }
342
+ }
343
+
344
+ [2.244][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
345
+ [2.244][FINER]: Waiting for all views to stop loading...
346
+ [2.244][FINER]: Done waiting for all views to stop loading
347
+ [2.267][FINER]: Waiting for all views to stop loading...
348
+ [2.267][FINER]: Done waiting for all views to stop loading
349
+ [2.268][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
350
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
351
+ "status": 0,
352
+ "value": false
353
+ }
354
+
355
+ [2.275][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with params {
356
+
357
+ }
358
+
359
+ [2.275][FINER]: Waiting for all views to stop loading...
360
+ [2.275][FINER]: Done waiting for all views to stop loading
361
+ [2.306][FINER]: Waiting for all views to stop loading...
362
+ [2.306][FINER]: Done waiting for all views to stop loading
363
+ [2.306][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with response {
364
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
365
+ "status": 0,
366
+ "value": {
367
+
368
+ }
369
+ }
370
+
371
+ [2.316][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
372
+ "using": "id",
373
+ "value": "checkbox"
374
+ }
375
+
376
+ [2.316][FINER]: Waiting for all views to stop loading...
377
+ [2.316][FINER]: Done waiting for all views to stop loading
378
+ [2.321][FINER]: Waiting for all views to stop loading...
379
+ [2.321][FINER]: Done waiting for all views to stop loading
380
+ [2.321][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
381
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
382
+ "status": 0,
383
+ "value": {
384
+ "ELEMENT": ":wdc:1366447894926"
385
+ }
386
+ }
387
+
388
+ [2.327][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
389
+ [2.327][FINER]: Waiting for all views to stop loading...
390
+ [2.327][FINER]: Done waiting for all views to stop loading
391
+ [2.337][FINER]: Waiting for all views to stop loading...
392
+ [2.338][FINER]: Done waiting for all views to stop loading
393
+ [2.338][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
394
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
395
+ "status": 0,
396
+ "value": true
397
+ }
398
+
399
+ [2.348][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
400
+ "using": "id",
401
+ "value": "checkbox"
402
+ }
403
+
404
+ [2.348][FINER]: Waiting for all views to stop loading...
405
+ [2.348][FINER]: Done waiting for all views to stop loading
406
+ [2.353][FINER]: Waiting for all views to stop loading...
407
+ [2.353][FINER]: Done waiting for all views to stop loading
408
+ [2.353][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
409
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
410
+ "status": 0,
411
+ "value": {
412
+ "ELEMENT": ":wdc:1366447894926"
413
+ }
414
+ }
415
+
416
+ [2.359][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
417
+ [2.359][FINER]: Waiting for all views to stop loading...
418
+ [2.359][FINER]: Done waiting for all views to stop loading
419
+ [2.368][FINER]: Waiting for all views to stop loading...
420
+ [2.369][FINER]: Done waiting for all views to stop loading
421
+ [2.369][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
422
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
423
+ "status": 0,
424
+ "value": true
425
+ }
426
+
427
+ [2.380][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
428
+ "using": "id",
429
+ "value": "checkbox"
430
+ }
431
+
432
+ [2.381][FINER]: Waiting for all views to stop loading...
433
+ [2.381][FINER]: Done waiting for all views to stop loading
434
+ [2.386][FINER]: Waiting for all views to stop loading...
435
+ [2.386][FINER]: Done waiting for all views to stop loading
436
+ [2.387][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
437
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
438
+ "status": 0,
439
+ "value": {
440
+ "ELEMENT": ":wdc:1366447894926"
441
+ }
442
+ }
443
+
444
+ [2.391][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
445
+ [2.391][FINER]: Waiting for all views to stop loading...
446
+ [2.391][FINER]: Done waiting for all views to stop loading
447
+ [2.400][FINER]: Waiting for all views to stop loading...
448
+ [2.400][FINER]: Done waiting for all views to stop loading
449
+ [2.400][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
450
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
451
+ "status": 0,
452
+ "value": true
453
+ }
454
+
455
+ [2.402][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
456
+ "using": "id",
457
+ "value": "checkbox"
458
+ }
459
+
460
+ [2.402][FINER]: Waiting for all views to stop loading...
461
+ [2.402][FINER]: Done waiting for all views to stop loading
462
+ [2.407][FINER]: Waiting for all views to stop loading...
463
+ [2.407][FINER]: Done waiting for all views to stop loading
464
+ [2.407][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
465
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
466
+ "status": 0,
467
+ "value": {
468
+ "ELEMENT": ":wdc:1366447894926"
469
+ }
470
+ }
471
+
472
+ [2.413][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
473
+ [2.413][FINER]: Waiting for all views to stop loading...
474
+ [2.413][FINER]: Done waiting for all views to stop loading
475
+ [2.422][FINER]: Waiting for all views to stop loading...
476
+ [2.423][FINER]: Done waiting for all views to stop loading
477
+ [2.423][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
478
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
479
+ "status": 0,
480
+ "value": true
481
+ }
482
+
483
+ [2.434][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
484
+ "using": "id",
485
+ "value": "checkbox"
486
+ }
487
+
488
+ [2.434][FINER]: Waiting for all views to stop loading...
489
+ [2.435][FINER]: Done waiting for all views to stop loading
490
+ [2.439][FINER]: Waiting for all views to stop loading...
491
+ [2.439][FINER]: Done waiting for all views to stop loading
492
+ [2.439][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
493
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
494
+ "status": 0,
495
+ "value": {
496
+ "ELEMENT": ":wdc:1366447894926"
497
+ }
498
+ }
499
+
500
+ [2.445][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
501
+ [2.445][FINER]: Waiting for all views to stop loading...
502
+ [2.445][FINER]: Done waiting for all views to stop loading
503
+ [2.454][FINER]: Waiting for all views to stop loading...
504
+ [2.454][FINER]: Done waiting for all views to stop loading
505
+ [2.455][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
506
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
507
+ "status": 0,
508
+ "value": true
509
+ }
510
+
511
+ [2.466][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
512
+ "using": "id",
513
+ "value": "checkbox"
514
+ }
515
+
516
+ [2.466][FINER]: Waiting for all views to stop loading...
517
+ [2.466][FINER]: Done waiting for all views to stop loading
518
+ [2.471][FINER]: Waiting for all views to stop loading...
519
+ [2.471][FINER]: Done waiting for all views to stop loading
520
+ [2.471][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
521
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
522
+ "status": 0,
523
+ "value": {
524
+ "ELEMENT": ":wdc:1366447894926"
525
+ }
526
+ }
527
+
528
+ [2.477][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
529
+ [2.477][FINER]: Waiting for all views to stop loading...
530
+ [2.477][FINER]: Done waiting for all views to stop loading
531
+ [2.487][FINER]: Waiting for all views to stop loading...
532
+ [2.488][FINER]: Done waiting for all views to stop loading
533
+ [2.488][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
534
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
535
+ "status": 0,
536
+ "value": true
537
+ }
538
+
539
+ [2.498][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with params {
540
+
541
+ }
542
+
543
+ [2.498][FINER]: Waiting for all views to stop loading...
544
+ [2.498][FINER]: Done waiting for all views to stop loading
545
+ [2.510][FINER]: Waiting for all views to stop loading...
546
+ [2.510][FINER]: Done waiting for all views to stop loading
547
+ [2.510][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with response {
548
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
549
+ "status": 0,
550
+ "value": {
551
+
552
+ }
553
+ }
554
+
555
+ [2.519][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
556
+ "using": "id",
557
+ "value": "checkbox"
558
+ }
559
+
560
+ [2.519][FINER]: Waiting for all views to stop loading...
561
+ [2.520][FINER]: Done waiting for all views to stop loading
562
+ [2.525][FINER]: Waiting for all views to stop loading...
563
+ [2.525][FINER]: Done waiting for all views to stop loading
564
+ [2.525][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
565
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
566
+ "status": 0,
567
+ "value": {
568
+ "ELEMENT": ":wdc:1366447894926"
569
+ }
570
+ }
571
+
572
+ [2.530][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
573
+ [2.530][FINER]: Waiting for all views to stop loading...
574
+ [2.530][FINER]: Done waiting for all views to stop loading
575
+ [2.545][FINER]: Waiting for all views to stop loading...
576
+ [2.545][FINER]: Done waiting for all views to stop loading
577
+ [2.545][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
578
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
579
+ "status": 0,
580
+ "value": false
581
+ }
582
+
583
+ [2.556][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
584
+ "using": "id",
585
+ "value": "checkbox"
586
+ }
587
+
588
+ [2.556][FINER]: Waiting for all views to stop loading...
589
+ [2.556][FINER]: Done waiting for all views to stop loading
590
+ [2.561][FINER]: Waiting for all views to stop loading...
591
+ [2.561][FINER]: Done waiting for all views to stop loading
592
+ [2.561][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
593
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
594
+ "status": 0,
595
+ "value": {
596
+ "ELEMENT": ":wdc:1366447894926"
597
+ }
598
+ }
599
+
600
+ [2.567][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
601
+ [2.567][FINER]: Waiting for all views to stop loading...
602
+ [2.567][FINER]: Done waiting for all views to stop loading
603
+ [2.576][FINER]: Waiting for all views to stop loading...
604
+ [2.576][FINER]: Done waiting for all views to stop loading
605
+ [2.576][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
606
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
607
+ "status": 0,
608
+ "value": false
609
+ }
610
+
611
+ [2.578][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
612
+ "using": "id",
613
+ "value": "checkbox"
614
+ }
615
+
616
+ [2.578][FINER]: Waiting for all views to stop loading...
617
+ [2.578][FINER]: Done waiting for all views to stop loading
618
+ [2.583][FINER]: Waiting for all views to stop loading...
619
+ [2.583][FINER]: Done waiting for all views to stop loading
620
+ [2.583][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
621
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
622
+ "status": 0,
623
+ "value": {
624
+ "ELEMENT": ":wdc:1366447894926"
625
+ }
626
+ }
627
+
628
+ [2.589][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
629
+ [2.589][FINER]: Waiting for all views to stop loading...
630
+ [2.589][FINER]: Done waiting for all views to stop loading
631
+ [2.598][FINER]: Waiting for all views to stop loading...
632
+ [2.598][FINER]: Done waiting for all views to stop loading
633
+ [2.598][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
634
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
635
+ "status": 0,
636
+ "value": false
637
+ }
638
+
639
+ [2.600][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with params {
640
+
641
+ }
642
+
643
+ [2.600][FINER]: Waiting for all views to stop loading...
644
+ [2.600][FINER]: Done waiting for all views to stop loading
645
+ [2.611][FINER]: Waiting for all views to stop loading...
646
+ [2.612][FINER]: Done waiting for all views to stop loading
647
+ [2.612][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with response {
648
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
649
+ "status": 0,
650
+ "value": {
651
+
652
+ }
653
+ }
654
+
655
+ [2.621][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
656
+ "using": "id",
657
+ "value": "checkbox"
658
+ }
659
+
660
+ [2.621][FINER]: Waiting for all views to stop loading...
661
+ [2.621][FINER]: Done waiting for all views to stop loading
662
+ [2.626][FINER]: Waiting for all views to stop loading...
663
+ [2.626][FINER]: Done waiting for all views to stop loading
664
+ [2.626][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
665
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
666
+ "status": 0,
667
+ "value": {
668
+ "ELEMENT": ":wdc:1366447894926"
669
+ }
670
+ }
671
+
672
+ [2.632][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
673
+ [2.632][FINER]: Waiting for all views to stop loading...
674
+ [2.632][FINER]: Done waiting for all views to stop loading
675
+ [2.641][FINER]: Waiting for all views to stop loading...
676
+ [2.642][FINER]: Done waiting for all views to stop loading
677
+ [2.642][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
678
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
679
+ "status": 0,
680
+ "value": true
681
+ }
682
+
683
+ [2.653][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with params {
684
+
685
+ }
686
+
687
+ [2.653][FINER]: Waiting for all views to stop loading...
688
+ [2.653][FINER]: Done waiting for all views to stop loading
689
+ [2.664][FINER]: Waiting for all views to stop loading...
690
+ [2.665][FINER]: Done waiting for all views to stop loading
691
+ [2.665][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/click) with response {
692
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
693
+ "status": 0,
694
+ "value": {
695
+
696
+ }
697
+ }
698
+
699
+ [2.674][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
700
+ "using": "id",
701
+ "value": "checkbox"
702
+ }
703
+
704
+ [2.674][FINER]: Waiting for all views to stop loading...
705
+ [2.674][FINER]: Done waiting for all views to stop loading
706
+ [2.679][FINER]: Waiting for all views to stop loading...
707
+ [2.680][FINER]: Done waiting for all views to stop loading
708
+ [2.680][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
709
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
710
+ "status": 0,
711
+ "value": {
712
+ "ELEMENT": ":wdc:1366447894926"
713
+ }
714
+ }
715
+
716
+ [2.686][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
717
+ [2.686][FINER]: Waiting for all views to stop loading...
718
+ [2.686][FINER]: Done waiting for all views to stop loading
719
+ [2.698][FINER]: Waiting for all views to stop loading...
720
+ [2.698][FINER]: Done waiting for all views to stop loading
721
+ [2.698][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
722
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
723
+ "status": 0,
724
+ "value": false
725
+ }
726
+
727
+ [2.707][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
728
+ "using": "id",
729
+ "value": "checkbox"
730
+ }
731
+
732
+ [2.707][FINER]: Waiting for all views to stop loading...
733
+ [2.708][FINER]: Done waiting for all views to stop loading
734
+ [2.713][FINER]: Waiting for all views to stop loading...
735
+ [2.714][FINER]: Done waiting for all views to stop loading
736
+ [2.714][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
737
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
738
+ "status": 0,
739
+ "value": {
740
+ "ELEMENT": ":wdc:1366447894926"
741
+ }
742
+ }
743
+
744
+ [2.718][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected)
745
+ [2.718][FINER]: Waiting for all views to stop loading...
746
+ [2.718][FINER]: Done waiting for all views to stop loading
747
+ [2.729][FINER]: Waiting for all views to stop loading...
748
+ [2.729][FINER]: Done waiting for all views to stop loading
749
+ [2.729][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894926/selected) with response {
750
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
751
+ "status": 0,
752
+ "value": false
753
+ }
754
+
755
+ [2.739][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
756
+ "using": "id",
757
+ "value": "select"
758
+ }
759
+
760
+ [2.739][FINER]: Waiting for all views to stop loading...
761
+ [2.740][FINER]: Done waiting for all views to stop loading
762
+ [2.751][FINER]: Waiting for all views to stop loading...
763
+ [2.751][FINER]: Done waiting for all views to stop loading
764
+ [2.751][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
765
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
766
+ "status": 0,
767
+ "value": {
768
+ "ELEMENT": ":wdc:1366447894927"
769
+ }
770
+ }
771
+
772
+ [2.760][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894927/elements) with params {
773
+ "using": "css selector",
774
+ "value": "option"
775
+ }
776
+
777
+ [2.760][FINER]: Waiting for all views to stop loading...
778
+ [2.760][FINER]: Done waiting for all views to stop loading
779
+ [2.771][FINER]: Waiting for all views to stop loading...
780
+ [2.771][FINER]: Done waiting for all views to stop loading
781
+ [2.772][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894927/elements) with response {
782
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
783
+ "status": 0,
784
+ "value": [ {
785
+ "ELEMENT": ":wdc:1366447894928"
786
+ }, {
787
+ "ELEMENT": ":wdc:1366447894929"
788
+ }, {
789
+ "ELEMENT": ":wdc:1366447894930"
790
+ } ]
791
+ }
792
+
793
+ [2.781][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected)
794
+ [2.781][FINER]: Waiting for all views to stop loading...
795
+ [2.781][FINER]: Done waiting for all views to stop loading
796
+ [2.805][FINER]: Waiting for all views to stop loading...
797
+ [2.805][FINER]: Done waiting for all views to stop loading
798
+ [2.805][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected) with response {
799
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
800
+ "status": 0,
801
+ "value": true
802
+ }
803
+
804
+ [2.812][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/attribute/value)
805
+ [2.812][FINER]: Waiting for all views to stop loading...
806
+ [2.812][FINER]: Done waiting for all views to stop loading
807
+ [2.838][FINER]: Waiting for all views to stop loading...
808
+ [2.839][FINER]: Done waiting for all views to stop loading
809
+ [2.839][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/attribute/value) with response {
810
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
811
+ "status": 0,
812
+ "value": "car"
813
+ }
814
+
815
+ [2.844][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/elements) with params {
816
+ "using": "css selector",
817
+ "value": "option"
818
+ }
819
+
820
+ [2.844][FINER]: Waiting for all views to stop loading...
821
+ [2.844][FINER]: Done waiting for all views to stop loading
822
+ [2.855][FINER]: Waiting for all views to stop loading...
823
+ [2.855][FINER]: Done waiting for all views to stop loading
824
+ [2.855][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/elements) with response {
825
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
826
+ "status": 0,
827
+ "value": [ {
828
+ "ELEMENT": ":wdc:1366447894928"
829
+ }, {
830
+ "ELEMENT": ":wdc:1366447894929"
831
+ }, {
832
+ "ELEMENT": ":wdc:1366447894930"
833
+ } ]
834
+ }
835
+
836
+ [2.865][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected)
837
+ [2.865][FINER]: Waiting for all views to stop loading...
838
+ [2.865][FINER]: Done waiting for all views to stop loading
839
+ [2.875][FINER]: Waiting for all views to stop loading...
840
+ [2.875][FINER]: Done waiting for all views to stop loading
841
+ [2.875][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected) with response {
842
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
843
+ "status": 0,
844
+ "value": true
845
+ }
846
+
847
+ [2.887][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/attribute/value)
848
+ [2.887][FINER]: Waiting for all views to stop loading...
849
+ [2.887][FINER]: Done waiting for all views to stop loading
850
+ [2.897][FINER]: Waiting for all views to stop loading...
851
+ [2.897][FINER]: Done waiting for all views to stop loading
852
+ [2.897][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/attribute/value) with response {
853
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
854
+ "status": 0,
855
+ "value": "car"
856
+ }
857
+
858
+ [2.907][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
859
+ "using": "id",
860
+ "value": "select"
861
+ }
862
+
863
+ [2.908][FINER]: Waiting for all views to stop loading...
864
+ [2.908][FINER]: Done waiting for all views to stop loading
865
+ [2.912][FINER]: Waiting for all views to stop loading...
866
+ [2.912][FINER]: Done waiting for all views to stop loading
867
+ [2.913][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
868
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
869
+ "status": 0,
870
+ "value": {
871
+ "ELEMENT": ":wdc:1366447894927"
872
+ }
873
+ }
874
+
875
+ [2.918][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894927/elements) with params {
876
+ "using": "css selector",
877
+ "value": "option"
878
+ }
879
+
880
+ [2.918][FINER]: Waiting for all views to stop loading...
881
+ [2.918][FINER]: Done waiting for all views to stop loading
882
+ [2.923][FINER]: Waiting for all views to stop loading...
883
+ [2.923][FINER]: Done waiting for all views to stop loading
884
+ [2.923][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894927/elements) with response {
885
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
886
+ "status": 0,
887
+ "value": [ {
888
+ "ELEMENT": ":wdc:1366447894928"
889
+ }, {
890
+ "ELEMENT": ":wdc:1366447894929"
891
+ }, {
892
+ "ELEMENT": ":wdc:1366447894930"
893
+ } ]
894
+ }
895
+
896
+ [2.929][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/attribute/value)
897
+ [2.929][FINER]: Waiting for all views to stop loading...
898
+ [2.929][FINER]: Done waiting for all views to stop loading
899
+ [2.939][FINER]: Waiting for all views to stop loading...
900
+ [2.939][FINER]: Done waiting for all views to stop loading
901
+ [2.939][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/attribute/value) with response {
902
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
903
+ "status": 0,
904
+ "value": "car"
905
+ }
906
+
907
+ [2.950][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/attribute/value)
908
+ [2.950][FINER]: Waiting for all views to stop loading...
909
+ [2.950][FINER]: Done waiting for all views to stop loading
910
+ [2.973][FINER]: Waiting for all views to stop loading...
911
+ [2.973][FINER]: Done waiting for all views to stop loading
912
+ [2.973][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/attribute/value) with response {
913
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
914
+ "status": 0,
915
+ "value": "bus"
916
+ }
917
+
918
+ [2.981][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/attribute/value)
919
+ [2.981][FINER]: Waiting for all views to stop loading...
920
+ [2.981][FINER]: Done waiting for all views to stop loading
921
+ [3.005][FINER]: Waiting for all views to stop loading...
922
+ [3.005][FINER]: Done waiting for all views to stop loading
923
+ [3.005][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/attribute/value) with response {
924
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
925
+ "status": 0,
926
+ "value": "bike"
927
+ }
928
+
929
+ [3.012][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/click) with params {
930
+
931
+ }
932
+
933
+ [3.012][FINER]: Waiting for all views to stop loading...
934
+ [3.012][FINER]: Done waiting for all views to stop loading
935
+ [3.036][FINER]: Waiting for all views to stop loading...
936
+ [3.036][FINER]: Done waiting for all views to stop loading
937
+ [3.036][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/click) with response {
938
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
939
+ "status": 0,
940
+ "value": {
941
+
942
+ }
943
+ }
944
+
945
+ [3.043][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected)
946
+ [3.043][FINER]: Waiting for all views to stop loading...
947
+ [3.043][FINER]: Done waiting for all views to stop loading
948
+ [3.055][FINER]: Waiting for all views to stop loading...
949
+ [3.055][FINER]: Done waiting for all views to stop loading
950
+ [3.055][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected) with response {
951
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
952
+ "status": 0,
953
+ "value": false
954
+ }
955
+
956
+ [3.065][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/selected)
957
+ [3.065][FINER]: Waiting for all views to stop loading...
958
+ [3.065][FINER]: Done waiting for all views to stop loading
959
+ [3.090][FINER]: Waiting for all views to stop loading...
960
+ [3.090][FINER]: Done waiting for all views to stop loading
961
+ [3.090][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/selected) with response {
962
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
963
+ "status": 0,
964
+ "value": false
965
+ }
966
+
967
+ [3.096][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/selected)
968
+ [3.096][FINER]: Waiting for all views to stop loading...
969
+ [3.096][FINER]: Done waiting for all views to stop loading
970
+ [3.119][FINER]: Waiting for all views to stop loading...
971
+ [3.120][FINER]: Done waiting for all views to stop loading
972
+ [3.120][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/selected) with response {
973
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
974
+ "status": 0,
975
+ "value": true
976
+ }
977
+
978
+ [3.127][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/attribute/value)
979
+ [3.127][FINER]: Waiting for all views to stop loading...
980
+ [3.127][FINER]: Done waiting for all views to stop loading
981
+ [3.138][FINER]: Waiting for all views to stop loading...
982
+ [3.138][FINER]: Done waiting for all views to stop loading
983
+ [3.138][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/attribute/value) with response {
984
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
985
+ "status": 0,
986
+ "value": "bike"
987
+ }
988
+
989
+ [3.148][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/elements) with params {
990
+ "using": "css selector",
991
+ "value": "option"
992
+ }
993
+
994
+ [3.148][FINER]: Waiting for all views to stop loading...
995
+ [3.148][FINER]: Done waiting for all views to stop loading
996
+ [3.153][FINER]: Waiting for all views to stop loading...
997
+ [3.153][FINER]: Done waiting for all views to stop loading
998
+ [3.153][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/elements) with response {
999
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1000
+ "status": 0,
1001
+ "value": [ {
1002
+ "ELEMENT": ":wdc:1366447894928"
1003
+ }, {
1004
+ "ELEMENT": ":wdc:1366447894929"
1005
+ }, {
1006
+ "ELEMENT": ":wdc:1366447894930"
1007
+ } ]
1008
+ }
1009
+
1010
+ [3.159][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected)
1011
+ [3.159][FINER]: Waiting for all views to stop loading...
1012
+ [3.159][FINER]: Done waiting for all views to stop loading
1013
+ [3.168][FINER]: Waiting for all views to stop loading...
1014
+ [3.169][FINER]: Done waiting for all views to stop loading
1015
+ [3.169][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected) with response {
1016
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1017
+ "status": 0,
1018
+ "value": false
1019
+ }
1020
+
1021
+ [3.180][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/selected)
1022
+ [3.180][FINER]: Waiting for all views to stop loading...
1023
+ [3.180][FINER]: Done waiting for all views to stop loading
1024
+ [3.191][FINER]: Waiting for all views to stop loading...
1025
+ [3.191][FINER]: Done waiting for all views to stop loading
1026
+ [3.191][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/selected) with response {
1027
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1028
+ "status": 0,
1029
+ "value": false
1030
+ }
1031
+
1032
+ [3.201][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/selected)
1033
+ [3.201][FINER]: Waiting for all views to stop loading...
1034
+ [3.201][FINER]: Done waiting for all views to stop loading
1035
+ [3.211][FINER]: Waiting for all views to stop loading...
1036
+ [3.211][FINER]: Done waiting for all views to stop loading
1037
+ [3.211][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/selected) with response {
1038
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1039
+ "status": 0,
1040
+ "value": true
1041
+ }
1042
+
1043
+ [3.222][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/attribute/value)
1044
+ [3.222][FINER]: Waiting for all views to stop loading...
1045
+ [3.222][FINER]: Done waiting for all views to stop loading
1046
+ [3.232][FINER]: Waiting for all views to stop loading...
1047
+ [3.232][FINER]: Done waiting for all views to stop loading
1048
+ [3.232][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894930/attribute/value) with response {
1049
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1050
+ "status": 0,
1051
+ "value": "bike"
1052
+ }
1053
+
1054
+ [3.244][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
1055
+ "using": "id",
1056
+ "value": "select"
1057
+ }
1058
+
1059
+ [3.244][FINER]: Waiting for all views to stop loading...
1060
+ [3.244][FINER]: Done waiting for all views to stop loading
1061
+ [3.248][FINER]: Waiting for all views to stop loading...
1062
+ [3.249][FINER]: Done waiting for all views to stop loading
1063
+ [3.249][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
1064
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1065
+ "status": 0,
1066
+ "value": {
1067
+ "ELEMENT": ":wdc:1366447894927"
1068
+ }
1069
+ }
1070
+
1071
+ [3.255][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894927/elements) with params {
1072
+ "using": "css selector",
1073
+ "value": "option"
1074
+ }
1075
+
1076
+ [3.255][FINER]: Waiting for all views to stop loading...
1077
+ [3.255][FINER]: Done waiting for all views to stop loading
1078
+ [3.260][FINER]: Waiting for all views to stop loading...
1079
+ [3.260][FINER]: Done waiting for all views to stop loading
1080
+ [3.260][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894927/elements) with response {
1081
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1082
+ "status": 0,
1083
+ "value": [ {
1084
+ "ELEMENT": ":wdc:1366447894928"
1085
+ }, {
1086
+ "ELEMENT": ":wdc:1366447894929"
1087
+ }, {
1088
+ "ELEMENT": ":wdc:1366447894930"
1089
+ } ]
1090
+ }
1091
+
1092
+ [3.266][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/text)
1093
+ [3.266][FINER]: Waiting for all views to stop loading...
1094
+ [3.266][FINER]: Done waiting for all views to stop loading
1095
+ [3.291][FINER]: Waiting for all views to stop loading...
1096
+ [3.291][FINER]: Done waiting for all views to stop loading
1097
+ [3.291][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/text) with response {
1098
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1099
+ "status": 0,
1100
+ "value": "Car"
1101
+ }
1102
+
1103
+ [3.297][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/text)
1104
+ [3.297][FINER]: Waiting for all views to stop loading...
1105
+ [3.297][FINER]: Done waiting for all views to stop loading
1106
+ [3.322][FINER]: Waiting for all views to stop loading...
1107
+ [3.322][FINER]: Done waiting for all views to stop loading
1108
+ [3.322][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/text) with response {
1109
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1110
+ "status": 0,
1111
+ "value": "Bus"
1112
+ }
1113
+
1114
+ [3.328][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/click) with params {
1115
+
1116
+ }
1117
+
1118
+ [3.328][FINER]: Waiting for all views to stop loading...
1119
+ [3.328][FINER]: Done waiting for all views to stop loading
1120
+ [3.352][FINER]: Waiting for all views to stop loading...
1121
+ [3.352][FINER]: Done waiting for all views to stop loading
1122
+ [3.353][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/click) with response {
1123
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1124
+ "status": 0,
1125
+ "value": {
1126
+
1127
+ }
1128
+ }
1129
+
1130
+ [3.360][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/elements) with params {
1131
+ "using": "css selector",
1132
+ "value": "option"
1133
+ }
1134
+
1135
+ [3.360][FINER]: Waiting for all views to stop loading...
1136
+ [3.360][FINER]: Done waiting for all views to stop loading
1137
+ [3.366][FINER]: Waiting for all views to stop loading...
1138
+ [3.366][FINER]: Done waiting for all views to stop loading
1139
+ [3.366][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/elements) with response {
1140
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1141
+ "status": 0,
1142
+ "value": [ {
1143
+ "ELEMENT": ":wdc:1366447894928"
1144
+ }, {
1145
+ "ELEMENT": ":wdc:1366447894929"
1146
+ }, {
1147
+ "ELEMENT": ":wdc:1366447894930"
1148
+ } ]
1149
+ }
1150
+
1151
+ [3.370][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected)
1152
+ [3.370][FINER]: Waiting for all views to stop loading...
1153
+ [3.370][FINER]: Done waiting for all views to stop loading
1154
+ [3.380][FINER]: Waiting for all views to stop loading...
1155
+ [3.380][FINER]: Done waiting for all views to stop loading
1156
+ [3.380][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894928/selected) with response {
1157
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1158
+ "status": 0,
1159
+ "value": false
1160
+ }
1161
+
1162
+ [3.391][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/selected)
1163
+ [3.391][FINER]: Waiting for all views to stop loading...
1164
+ [3.391][FINER]: Done waiting for all views to stop loading
1165
+ [3.419][FINER]: Waiting for all views to stop loading...
1166
+ [3.419][FINER]: Done waiting for all views to stop loading
1167
+ [3.419][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/selected) with response {
1168
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1169
+ "status": 0,
1170
+ "value": true
1171
+ }
1172
+
1173
+ [3.422][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/attribute/value)
1174
+ [3.422][FINER]: Waiting for all views to stop loading...
1175
+ [3.422][FINER]: Done waiting for all views to stop loading
1176
+ [3.432][FINER]: Waiting for all views to stop loading...
1177
+ [3.432][FINER]: Done waiting for all views to stop loading
1178
+ [3.433][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894929/attribute/value) with response {
1179
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1180
+ "status": 0,
1181
+ "value": "bus"
1182
+ }
1183
+
1184
+ [3.443][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element) with params {
1185
+ "using": "name",
1186
+ "value": "btn"
1187
+ }
1188
+
1189
+ [3.444][FINER]: Waiting for all views to stop loading...
1190
+ [3.444][FINER]: Done waiting for all views to stop loading
1191
+ [3.456][FINER]: Waiting for all views to stop loading...
1192
+ [3.456][FINER]: Done waiting for all views to stop loading
1193
+ [3.456][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element) with response {
1194
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1195
+ "status": 0,
1196
+ "value": {
1197
+ "ELEMENT": ":wdc:1366447894931"
1198
+ }
1199
+ }
1200
+
1201
+ [3.464][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894931/click) with params {
1202
+
1203
+ }
1204
+
1205
+ [3.464][FINER]: Waiting for all views to stop loading...
1206
+ [3.464][FINER]: Done waiting for all views to stop loading
1207
+ [3.495][FINER]: Waiting for all views to stop loading...
1208
+ [3.514][FINER]: Done waiting for all views to stop loading
1209
+ [3.514][FINE]: Command finished (/session/11a6df9810fb39aac2bda0030fc24348/element/:wdc:1366447894931/click) with response {
1210
+ "sessionId": "11a6df9810fb39aac2bda0030fc24348",
1211
+ "status": 0,
1212
+ "value": {
1213
+
1214
+ }
1215
+ }
1216
+
1217
+ [3.519][FINE]: Command received (/session/11a6df9810fb39aac2bda0030fc24348/window)
1218
+ [4.215][INFO]: Chrome shutdown