-
Notifications
You must be signed in to change notification settings - Fork 68
/
element_commands.cc
1178 lines (1066 loc) · 43.8 KB
/
element_commands.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/test/chromedriver/element_commands.h"
#include <stddef.h>
#include <cmath>
#include <memory>
#include <set>
#include <string>
#include <unordered_set>
#include <vector>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/functional/callback.h"
#include "base/logging.h"
#include "base/strings/string_split.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/threading/platform_thread.h"
#include "base/time/time.h"
#include "base/values.h"
#include "chrome/test/chromedriver/basic_types.h"
#include "chrome/test/chromedriver/chrome/chrome.h"
#include "chrome/test/chromedriver/chrome/js.h"
#include "chrome/test/chromedriver/chrome/status.h"
#include "chrome/test/chromedriver/chrome/ui_events.h"
#include "chrome/test/chromedriver/chrome/web_view.h"
#include "chrome/test/chromedriver/constants/version.h"
#include "chrome/test/chromedriver/element_util.h"
#include "chrome/test/chromedriver/session.h"
#include "chrome/test/chromedriver/util.h"
#include "third_party/selenium-atoms/atoms.h"
const int kFlickTouchEventsPerSecond = 30;
const std::set<std::string> kTextControlTypes = {"text", "search", "tel", "url",
"password"};
const std::set<std::string> kInputControlTypes = {
"text", "search", "url", "tel", "email",
"password", "date", "month", "week", "time",
"datetime-local", "number", "range", "color", "file"};
const std::set<std::string> kNontypeableControlTypes = {"color"};
const std::unordered_set<std::string> kBooleanAttributes = {
"allowfullscreen",
"allowpaymentrequest",
"allowusermedia",
"async",
"autofocus",
"autoplay",
"checked",
"compact",
"complete",
"controls",
"declare",
"default",
"defaultchecked",
"defaultselected",
"defer",
"disabled",
"ended",
"formnovalidate",
"hidden",
"indeterminate",
"iscontenteditable",
"ismap",
"itemscope",
"loop",
"multiple",
"muted",
"nohref",
"nomodule",
"noresize",
"noshade",
"novalidate",
"nowrap",
"open",
"paused",
"playsinline",
"pubdate",
"readonly",
"required",
"reversed",
"scoped",
"seamless",
"seeking",
"selected",
"truespeed",
"typemustmatch",
"willvalidate"};
namespace {
Status FocusToElement(
Session* session,
WebView* web_view,
const std::string& element_id) {
Status status{kOk};
bool is_displayed = false;
bool is_focused = false;
base::TimeTicks start_time = base::TimeTicks::Now();
while (true) {
status = IsElementDisplayed(
session, web_view, element_id, true, &is_displayed);
if (status.IsError())
return status;
if (is_displayed)
break;
status = IsElementFocused(session, web_view, element_id, &is_focused);
if (status.IsError())
return status;
if (is_focused)
break;
if (base::TimeTicks::Now() - start_time >= session->implicit_wait) {
return Status(kElementNotVisible);
}
base::PlatformThread::Sleep(base::Milliseconds(100));
}
bool is_enabled = false;
status = IsElementEnabled(session, web_view, element_id, &is_enabled);
if (status.IsError())
return status;
if (!is_enabled)
return Status(kInvalidElementState);
if (!is_focused) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
std::unique_ptr<base::Value> unused;
status = web_view->CallFunction(session->GetCurrentFrameId(), kFocusScript,
args, &unused);
if (status.IsError())
return status;
}
return Status(kOk);
}
Status SendKeysToElement(Session* session,
WebView* web_view,
const std::string& element_id,
const bool is_text,
const base::Value::List* key_list) {
// If we were previously focused, we don't need to focus again.
// But also, later we don't move the carat if we were already in focus.
// However, non-text elements such as contenteditable elements needs to be
// focused to ensure the keys will end up being sent to the correct place.
// So in the case of non-text elements, we still focusToElement.
bool was_previously_focused = false;
IsElementFocused(session, web_view, element_id, &was_previously_focused);
if (!was_previously_focused || !is_text) {
Status status = FocusToElement(session, web_view, element_id);
if (status.IsError())
return Status(kElementNotInteractable);
}
// Move cursor/caret to append the input if we only just focused this
// element. keys if element's type is text-related
if (is_text && !was_previously_focused) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
std::unique_ptr<base::Value> unused;
Status status = web_view->CallFunction(
session->GetCurrentFrameId(),
"elem => elem.setSelectionRange(elem.value.length, elem.value.length)",
args, &unused);
if (status.IsError())
return status;
}
return SendKeysOnWindow(web_view, key_list, true, &session->sticky_modifiers);
}
Status WrapIfTargetDetached(Status status, StatusCode new_code) {
if (status.code() == kTargetDetached) {
return Status{new_code, status};
}
return status;
}
} // namespace
Status ExecuteElementCommand(const ElementCommand& command,
Session* session,
WebView* web_view,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value,
Timeout* timeout) {
const std::string* id = params.FindString("id");
if (!id)
id = params.FindString("element");
if (id) {
return command.Run(session, web_view, *id, params, value);
}
return Status(kInvalidArgument, "element identifier must be a string");
}
Status ExecuteFindChildElement(int interval_ms,
Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
return FindElement(
interval_ms, true, &element_id, session, web_view, params, value);
}
Status ExecuteFindChildElementFromShadowRoot(
int interval_ms,
Session* session,
WebView* web_view,
const std::string& shadow_root_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
return FindShadowElement(interval_ms, true, &shadow_root_id, session,
web_view, params, value);
}
Status ExecuteFindChildElementsFromShadowRoot(
int interval_ms,
Session* session,
WebView* web_view,
const std::string& shadow_root_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
return FindShadowElement(interval_ms, false, &shadow_root_id, session,
web_view, params, value);
}
Status ExecuteGetElementShadowRoot(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
std::unique_ptr<base::Value> tmp;
CallFunctionOptions options;
options.include_shadow_root = true;
Status status = web_view->CallFunctionWithTimeout(
session->GetCurrentFrameId(), "function(elem) { return elem; }", args,
base::TimeDelta::Max(), options, &tmp);
if (status.IsError()) {
return status;
}
if (!tmp->is_dict()) {
return Status(kNoSuchShadowRoot, "result is not a dictionary");
}
base::Value::Dict* shadow_root = tmp->GetDict().FindDict("shadowRoot");
if (shadow_root == nullptr) {
return Status(kNoSuchShadowRoot, "shadow root not found");
}
*value = std::make_unique<base::Value>(std::move(*shadow_root));
return status;
}
Status ExecuteFindChildElements(int interval_ms,
Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
return FindElement(
interval_ms, false, &element_id, session, web_view, params, value);
}
Status ExecuteClickElement(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
std::string tag_name;
Status status = GetElementTagName(session, web_view, element_id, &tag_name);
if (status.IsError())
return WrapIfTargetDetached(status, kAbortedByNavigation);
if (tag_name == "option") {
bool is_toggleable;
status = IsOptionElementTogglable(
session, web_view, element_id, &is_toggleable);
if (status.IsError())
return WrapIfTargetDetached(status, kAbortedByNavigation);
if (is_toggleable) {
status = ToggleOptionElement(session, web_view, element_id);
return WrapIfTargetDetached(status, kAbortedByNavigation);
}
status = SetOptionElementSelected(session, web_view, element_id, true);
return WrapIfTargetDetached(status, kAbortedByNavigation);
}
if (tag_name == "input") {
std::unique_ptr<base::Value> get_element_type;
status = GetElementAttribute(session, web_view, element_id, "type",
&get_element_type);
if (status.IsError()) {
return WrapIfTargetDetached(status, kAbortedByNavigation);
}
std::string element_type;
if (get_element_type->is_string())
element_type = base::ToLowerASCII(get_element_type->GetString());
if (element_type == "file")
return Status(kInvalidArgument);
}
WebPoint absolute_location;
status = GetElementClickableLocation(session, web_view, element_id,
&absolute_location);
if (status.IsError())
return WrapIfTargetDetached(status, kAbortedByNavigation);
WebView* containing_web_view =
web_view->FindContainerForFrame(session->GetCurrentFrameId());
if (containing_web_view == nullptr) {
return Status{kAbortedByNavigation,
"frame was destroyed before click completion"};
}
WebPoint relative_location;
status = GetElementClickableLocation(session, containing_web_view, element_id,
&relative_location);
if (status.IsError()) {
return WrapIfTargetDetached(status, kAbortedByNavigation);
}
std::vector<MouseEvent> events;
events.emplace_back(kMovedMouseEventType, kNoneMouseButton,
relative_location.x, relative_location.y,
session->sticky_modifiers, 0, 0);
events.emplace_back(kPressedMouseEventType, kLeftMouseButton,
relative_location.x, relative_location.y,
session->sticky_modifiers, 0, 1);
events.emplace_back(kReleasedMouseEventType, kLeftMouseButton,
relative_location.x, relative_location.y,
session->sticky_modifiers, 1, 1);
status = containing_web_view->DispatchMouseEvents(
events, session->GetCurrentFrameId(), false);
if (status.code() == kTargetDetached) {
// Potential causes:
// * navigation detaches the OOPIF
// * window or frame is destroyed
// We assume that this is a side effect of the click.
status = Status{kOk};
}
if (status.IsOk())
session->mouse_position = absolute_location;
return status;
}
Status ExecuteTouchSingleTap(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
WebPoint location;
Status status = GetElementClickableLocation(
session, web_view, element_id, &location);
if (status.IsError())
return status;
if (!session->chrome->HasTouchScreen()) {
// TODO(samuong): remove this once we stop supporting M44.
std::vector<TouchEvent> events;
events.push_back(
TouchEvent(kTouchStart, location.x, location.y));
events.push_back(
TouchEvent(kTouchEnd, location.x, location.y));
return web_view->DispatchTouchEvents(events, false);
}
return web_view->SynthesizeTapGesture(location.x, location.y, 1, false);
}
Status ExecuteTouchDoubleTap(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
if (!session->chrome->HasTouchScreen()) {
// TODO(samuong): remove this once we stop supporting M44.
return Status(kUnknownCommand, "Double tap command requires Chrome 44+");
}
WebPoint location;
Status status = GetElementClickableLocation(
session, web_view, element_id, &location);
if (status.IsError())
return status;
return web_view->SynthesizeTapGesture(location.x, location.y, 2, false);
}
Status ExecuteTouchLongPress(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
if (!session->chrome->HasTouchScreen()) {
// TODO(samuong): remove this once we stop supporting M44.
return Status(kUnknownCommand, "Long press command requires Chrome 44+");
}
WebPoint location;
Status status = GetElementClickableLocation(
session, web_view, element_id, &location);
if (status.IsError())
return status;
return web_view->SynthesizeTapGesture(location.x, location.y, 1, true);
}
Status ExecuteFlick(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
WebPoint location;
Status status = GetElementClickableLocation(
session, web_view, element_id, &location);
if (status.IsError())
return status;
int xoffset, yoffset, speed;
std::optional<int> maybe_xoffset = params.FindInt("xoffset");
if (!maybe_xoffset)
return Status(kInvalidArgument, "'xoffset' must be an integer");
xoffset = *maybe_xoffset;
std::optional<int> maybe_yoffset = params.FindInt("yoffset");
if (!maybe_yoffset)
return Status(kInvalidArgument, "'yoffset' must be an integer");
yoffset = *maybe_yoffset;
speed = params.FindInt("speed").value_or(-1);
if (speed < 1)
return Status(kInvalidArgument, "'speed' must be a positive integer");
status = web_view->DispatchTouchEvent(
TouchEvent(kTouchStart, location.x, location.y), false);
if (status.IsError())
return status;
const double offset =
std::sqrt(static_cast<double>(xoffset * xoffset + yoffset * yoffset));
const double xoffset_per_event =
(speed * xoffset) / (kFlickTouchEventsPerSecond * offset);
const double yoffset_per_event =
(speed * yoffset) / (kFlickTouchEventsPerSecond * offset);
const int total_events =
(offset * kFlickTouchEventsPerSecond) / speed;
for (int i = 0; i < total_events; i++) {
status = web_view->DispatchTouchEvent(
TouchEvent(kTouchMove, location.x + xoffset_per_event * i,
location.y + yoffset_per_event * i),
false);
if (status.IsError())
return status;
base::PlatformThread::Sleep(
base::Milliseconds(1000 / kFlickTouchEventsPerSecond));
}
return web_view->DispatchTouchEvent(
TouchEvent(kTouchEnd, location.x + xoffset, location.y + yoffset), false);
}
Status ExecuteClearElement(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
std::string tag_name;
Status status = GetElementTagName(session, web_view, element_id, &tag_name);
if (status.IsError())
return status;
bool is_input_control = false;
if (tag_name == "input") {
std::unique_ptr<base::Value> get_element_type;
status = GetElementAttribute(session, web_view, element_id, "type",
&get_element_type);
if (status.IsError())
return status;
std::string element_type;
if (get_element_type->is_string())
element_type = base::ToLowerASCII(get_element_type->GetString());
is_input_control =
kInputControlTypes.find(element_type) != kInputControlTypes.end();
}
bool is_text = tag_name == "textarea";
bool is_content_editable = false;
if (!is_text && !is_input_control) {
std::unique_ptr<base::Value> get_content_editable;
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
status = web_view->CallFunction(session->GetCurrentFrameId(),
"element => element.isContentEditable",
args, &get_content_editable);
if (status.IsError())
return status;
is_content_editable = get_content_editable->GetIfBool().value_or(false);
}
std::unique_ptr<base::Value> get_readonly;
bool is_readonly = false;
base::Value::Dict params_readOnly;
if (!is_content_editable) {
params_readOnly.Set("name", "readOnly");
status = ExecuteGetElementProperty(session, web_view, element_id,
params_readOnly, &get_readonly);
if (status.IsError())
return status;
is_readonly = get_readonly->GetIfBool().value_or(false);
}
bool is_editable =
(is_input_control || is_text || is_content_editable) && !is_readonly;
if (!is_editable)
return Status(kInvalidElementState);
// Scrolling to element is done by webdriver::atoms::CLEAR
bool is_displayed = false;
base::TimeTicks start_time = base::TimeTicks::Now();
while (true) {
status = IsElementDisplayed(
session, web_view, element_id, true, &is_displayed);
if (status.IsError())
return status;
if (is_displayed)
break;
if (base::TimeTicks::Now() - start_time >= session->implicit_wait) {
return Status(kElementNotVisible);
}
base::PlatformThread::Sleep(base::Milliseconds(50));
}
static bool is_clear_warning_notified = false;
if (!is_clear_warning_notified) {
VLOG(0) << "\n\t=== NOTE: ===\n"
<< "\tThe Clear command in " << kChromeDriverProductShortName
<< " 2.43 and above\n"
<< "\thas been updated to conform to the current standard,\n"
<< "\tincluding raising blur event after clearing.\n";
is_clear_warning_notified = true;
}
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
std::unique_ptr<base::Value> unused;
return web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::CLEAR), args, &unused);
}
Status ExecuteSendKeysToElement(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
const base::Value::List* key_list;
base::Value::List key_list_local;
const base::Value* text = nullptr;
if (session->w3c_compliant) {
text = params.Find("text");
if (text == nullptr || !text->is_string())
return Status(kInvalidArgument, "'text' must be a string");
key_list_local.Append(text->Clone());
key_list = &key_list_local;
} else {
key_list = params.FindList("value");
if (key_list == nullptr) {
return Status(kInvalidArgument, "'value' must be a list");
}
}
bool is_input = false;
Status status = IsElementAttributeEqualToIgnoreCase(
session, web_view, element_id, "tagName", "input", &is_input);
if (status.IsError())
return status;
std::unique_ptr<base::Value> get_element_type;
status = GetElementAttribute(session, web_view, element_id, "type",
&get_element_type);
if (status.IsError())
return status;
std::string element_type;
if (get_element_type->is_string())
element_type = base::ToLowerASCII(get_element_type->GetString());
bool is_file = element_type == "file";
bool is_nontypeable = kNontypeableControlTypes.find(element_type) !=
kNontypeableControlTypes.end();
if (is_input && is_file) {
if (session->strict_file_interactability) {
status = FocusToElement(session, web_view,element_id);
if (status.IsError())
return status;
}
// Compress array into a single string.
std::string paths_string;
for (const base::Value& i : *key_list) {
const std::string* path_part = i.GetIfString();
if (!path_part)
return Status(kInvalidArgument, "'value' is invalid");
paths_string.append(*path_part);
}
// w3c spec specifies empty path_part should throw invalidArgument error
if (paths_string.empty())
return Status(kInvalidArgument, "'text' is empty");
ChromeDesktopImpl* chrome_desktop = nullptr;
bool is_desktop = session->chrome->GetAsDesktop(&chrome_desktop).IsOk();
// Separate the string into separate paths, delimited by '\n'.
std::vector<base::FilePath> paths;
for (const auto& path_piece : base::SplitStringPiece(
paths_string, "\n", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL)) {
// For local desktop browser, verify that the file exists.
// No easy way to do that for remote or mobile browser.
if (is_desktop &&
!base::PathExists(base::FilePath::FromUTF8Unsafe(path_piece))) {
return Status(
kInvalidArgument,
base::StringPrintf(
"File not found : %" PRFilePath,
base::FilePath::FromUTF8Unsafe(path_piece).value().c_str()));
}
paths.push_back(base::FilePath::FromUTF8Unsafe(path_piece));
}
bool multiple = false;
status = IsElementAttributeEqualToIgnoreCase(
session, web_view, element_id, "multiple", "true", &multiple);
if (status.IsError())
return status;
if (!multiple && paths.size() > 1) {
return Status(kInvalidArgument,
"the element can not hold multiple files");
}
base::Value element = CreateElement(element_id, session->w3c_compliant);
return web_view->SetFileInputFiles(session->GetCurrentFrameId(), element,
paths, multiple);
}
if (session->w3c_compliant && is_input && is_nontypeable) {
// Special handling for non-typeable inputs is only included in W3C Spec
// The Spec calls for returning element not interactable if the element
// has no value property, but this is included for all input elements, so
// no check is needed here.
// text is set only when session.w3c_compliant, so confirm here
DCHECK(text != nullptr);
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
args.Append(text->GetString());
std::unique_ptr<base::Value> unused;
// Set value to text as given by user; if this does not match the defined
// format for the input type, results are not defined
return web_view->CallFunction(session->GetCurrentFrameId(),
"(element, text) => element.value = text",
args, &unused);
}
std::unique_ptr<base::Value> get_content_editable;
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
status = web_view->CallFunction(session->GetCurrentFrameId(),
"element => element.isContentEditable", args,
&get_content_editable);
if (status.IsError())
return status;
// If element_type is in kTextControlTypes, sendKeys should append
bool is_text_control_type =
is_input &&
kTextControlTypes.find(element_type) != kTextControlTypes.end();
// If the element is a textarea, sendKeys should also append
bool is_textarea = false;
status = IsElementAttributeEqualToIgnoreCase(
session, web_view, element_id, "tagName", "textarea", &is_textarea);
if (status.IsError())
return status;
bool is_text = is_text_control_type || is_textarea;
if (get_content_editable->is_bool() && get_content_editable->GetBool()) {
// If element is contentEditable
// check if element is focused
bool is_focused = false;
status = IsElementFocused(session, web_view, element_id, &is_focused);
if (status.IsError())
return status;
// Get top level contentEditable element
std::unique_ptr<base::Value> result;
status = web_view->CallFunction(session->GetCurrentFrameId(),
"function(element) {"
"while (element.parentElement && "
"element.parentElement.isContentEditable) {"
" element = element.parentElement;"
" }"
"return element;"
"}",
args, &result);
if (status.IsError())
return status;
const base::Value::Dict* element_dict = result->GetIfDict();
const std::string* top_element_id =
element_dict
? element_dict->FindString(GetElementKey(session->w3c_compliant))
: nullptr;
if (!top_element_id)
return Status(kUnknownError, "no element reference returned by script");
// check if top level contentEditable element is focused
bool is_top_focused = false;
status =
IsElementFocused(session, web_view, *top_element_id, &is_top_focused);
if (status.IsError())
return status;
// If is_text we want to send keys to the element
// Otherwise, send keys to the top element
if ((is_text && !is_focused) || (!is_text && !is_top_focused)) {
// If element does not currentley have focus
// will move caret
// at end of element text. W3C mandates that the
// caret be moved "after any child content"
// Set selection using the element itself
std::unique_ptr<base::Value> unused;
status = web_view->CallFunction(session->GetCurrentFrameId(),
"function(element) {"
"var range = document.createRange();"
"range.selectNodeContents(element);"
"range.collapse();"
"var sel = window.getSelection();"
"sel.removeAllRanges();"
"sel.addRange(range);"
"}",
args, &unused);
if (status.IsError())
return status;
}
// Use top level element id for the purpose of focusing
if (!is_text) {
return SendKeysToElement(session, web_view, *top_element_id, is_text,
key_list);
}
}
return SendKeysToElement(session, web_view, element_id, is_text, key_list);
}
Status ExecuteSubmitElement(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
return web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::SUBMIT),
args,
value);
}
Status ExecuteGetElementText(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
return web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::GET_TEXT),
args,
value);
}
Status ExecuteGetElementValue(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
return web_view->CallFunction(
session->GetCurrentFrameId(),
"function(elem) { return elem['value'] }",
args,
value);
}
Status ExecuteGetElementProperty(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
const std::string* name = params.FindString("name");
if (!name)
return Status(kInvalidArgument, "missing 'name'");
args.Append(*name);
return web_view->CallFunction(
session->GetCurrentFrameId(),
"function(elem, name) { return elem[name] }",
args,
value);
}
Status ExecuteGetElementTagName(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
return web_view->CallFunction(
session->GetCurrentFrameId(),
"function(elem) { return elem.tagName.toLowerCase() }",
args,
value);
}
Status ExecuteIsElementSelected(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
return web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::IS_SELECTED),
args,
value);
}
Status ExecuteIsElementEnabled(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
bool is_xml = false;
Status status = IsDocumentTypeXml(session, web_view, &is_xml);
if (status.IsError())
return status;
if (is_xml) {
*value = std::make_unique<base::Value>(false);
return Status(kOk);
}
return web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::IS_ENABLED), args, value);
}
Status ExecuteGetComputedLabel(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
std::unique_ptr<base::Value> ax_node;
Status status = GetAXNodeByElementId(session, web_view, element_id, &ax_node);
if (status.IsError())
return status;
// Computed label stores as `name` in the AXTree.
base::Value::Dict* name_node = ax_node->GetDict().FindDict("name");
if (!name_node) {
// No computed label found. Return empty string.
*value = std::make_unique<base::Value>("");
return Status(kOk);
}
std::optional<base::Value> name_val = name_node->Extract("value");
if (!name_val)
return Status(kUnknownError,
"No name value found in the node in CDP response");
*value = std::make_unique<base::Value>(std::move(*name_val));
return Status(kOk);
}
Status ExecuteGetComputedRole(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
std::unique_ptr<base::Value> ax_node;
Status status = GetAXNodeByElementId(session, web_view, element_id, &ax_node);
if (status.IsError())
return status;
base::Value::Dict* role_node = ax_node->GetDict().FindDict("role");
if (!role_node) {
// No computed role found. Return empty string.
*value = std::make_unique<base::Value>("");
return Status(kOk);
}
std::optional<base::Value> role_val = role_node->Extract("value");
if (!role_val) {
return Status(kUnknownError,
"No role value found in the node in CDP response");
}
*value = std::make_unique<base::Value>(std::move(*role_val));
return Status(kOk);
}
Status ExecuteIsElementDisplayed(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
return web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::IS_DISPLAYED),
args,
value);
}
Status ExecuteGetElementLocation(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
return web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::GET_LOCATION),
args,
value);
}
Status ExecuteGetElementRect(Session* session,
WebView* web_view,
const std::string& element_id,
const base::Value::Dict& params,
std::unique_ptr<base::Value>* value) {
base::Value::List args;
args.Append(CreateElement(element_id, session->w3c_compliant));
std::unique_ptr<base::Value> location;
Status status = web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::GET_LOCATION), args,
&location);
if (status.IsError())
return status;
std::unique_ptr<base::Value> size;
status = web_view->CallFunction(
session->GetCurrentFrameId(),
webdriver::atoms::asString(webdriver::atoms::GET_SIZE), args, &size);
if (status.IsError())
return status;
// do type conversions
base::Value::Dict* size_dict = size->GetIfDict();
if (!size_dict)
return Status(kUnknownError, "could not convert to Value::Dict");
base::Value::Dict* location_dict = location->GetIfDict();
if (!location_dict)
return Status(kUnknownError, "could not convert to Value::Dict");
// grab values
std::optional<double> maybe_x = location_dict->FindDouble("x");
if (!maybe_x.has_value())
return Status(kUnknownError, "x coordinate is missing in element location");
std::optional<double> maybe_y = location_dict->FindDouble("y");
if (!maybe_y.has_value())
return Status(kUnknownError, "y coordinate is missing in element location");
std::optional<double> maybe_height = size_dict->FindDouble("height");
if (!maybe_height.has_value())
return Status(kUnknownError, "height is missing in element size");
std::optional<double> maybe_width = size_dict->FindDouble("width");
if (!maybe_width.has_value())
return Status(kUnknownError, "width is missing in element size");
base::Value::Dict ret;
ret.Set("x", maybe_x.value());
ret.Set("y", maybe_y.value());
ret.Set("width", maybe_width.value());
ret.Set("height", maybe_height.value());
*value = std::make_unique<base::Value>(std::move(ret));