-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelenium.WebDriverBackedSelenium.xml
More file actions
2386 lines (2386 loc) · 137 KB
/
Copy pathSelenium.WebDriverBackedSelenium.xml
File metadata and controls
2386 lines (2386 loc) · 137 KB
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>Selenium.WebDriverBackedSelenium</name>
</assembly>
<members>
<member name="T:Selenium.WebDriverBackedSelenium">
<summary>
Provides a Selenium instance that processes its commands via an IWebDriver instance.
</summary>
</member>
<member name="M:Selenium.WebDriverBackedSelenium.#ctor(OpenQA.Selenium.IWebDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.WebDriverBackedSelenium"/> class using the specified
WebDriver driver and base URL.
</summary>
<param name="baseDriver">The <see cref="T:OpenQA.Selenium.IWebDriver"/> instance used to drive the browser.</param>
<param name="baseUrl">The base URL of the Selenium server.</param>
</member>
<member name="M:Selenium.WebDriverBackedSelenium.#ctor(OpenQA.Selenium.IWebDriver,System.Uri)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.WebDriverBackedSelenium"/> class using the specified
WebDriver driver and base URL.
</summary>
<param name="baseDriver">The <see cref="T:OpenQA.Selenium.IWebDriver"/> instance used to drive the browser.</param>
<param name="baseUrl">The base URL of the Selenium server.</param>
</member>
<member name="P:Selenium.WebDriverBackedSelenium.UnderlyingWebDriver">
<summary>
Gets the underlying <see cref="T:OpenQA.Selenium.IWebDriver"/> object used to drive the browser for this instance of Selenium.
</summary>
</member>
<member name="T:Selenium.WebDriverCommandProcessor">
<summary>
Provides an implementation the ICommandProcessor interface which uses WebDriver to complete
the Selenium commands.
</summary>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.#ctor(System.String,OpenQA.Selenium.IWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.WebDriverCommandProcessor"/> class.
</summary>
<param name="baseUrl">The base URL of the Selenium server.</param>
<param name="baseDriver">The IWebDriver object used for executing commands.</param>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.#ctor(System.Uri,OpenQA.Selenium.IWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.WebDriverCommandProcessor"/> class.
</summary>
<param name="baseUrl">The base URL of the Selenium server.</param>
<param name="baseDriver">The IWebDriver object used for executing commands.</param>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.DoCommand(System.String,System.String[])">
<summary>
Sends the specified remote command to the browser to be performed
</summary>
<param name="command">The remote command verb.</param>
<param name="args">The arguments to the remote command (depends on the verb).</param>
<returns>the command result, defined by the remote JavaScript. "getX" style
commands may return data from the browser</returns>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.SetExtensionJs(System.String)">
<summary>
Sets the script to use as user extensions.
</summary>
<param name="extensionJs">The script to use as user extensions.</param>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.Start">
<summary>
Starts the command processor.
</summary>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.Start(System.String)">
<summary>
Starts the command processor using the specified options.
</summary>
<param name="optionsString">A string representing the options to use.</param>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.Start(System.Object)">
<summary>
Starts the command processor using the specified options.
</summary>
<param name="optionsObject">An object representing the options to use.</param>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.Stop">
<summary>
Stops the command processor.
</summary>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.GetString(System.String,System.String[])">
<summary>
Gets a string from the command processor.
</summary>
<param name="command">The command to send.</param>
<param name="args">The arguments of the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.GetStringArray(System.String,System.String[])">
<summary>
Gets a string array from the command processor.
</summary>
<param name="command">The command to send.</param>
<param name="args">The arguments of the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.GetNumber(System.String,System.String[])">
<summary>
Gets a number from the command processor.
</summary>
<param name="command">The command to send.</param>
<param name="args">The arguments of the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.GetNumberArray(System.String,System.String[])">
<summary>
Gets a number array from the command processor.
</summary>
<param name="command">The command to send.</param>
<param name="args">The arguments of the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.GetBoolean(System.String,System.String[])">
<summary>
Gets a boolean value from the command processor.
</summary>
<param name="command">The command to send.</param>
<param name="args">The arguments of the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="M:Selenium.WebDriverCommandProcessor.GetBooleanArray(System.String,System.String[])">
<summary>
Gets an array of boolean values from the command processor.
</summary>
<param name="command">The command to send.</param>
<param name="args">The arguments of the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="P:Selenium.WebDriverCommandProcessor.UnderlyingWebDriver">
<summary>
Gets the <see cref="T:OpenQA.Selenium.IWebDriver"/> object that executes the commands for this command processor.
</summary>
</member>
<member name="T:Selenium.Internal.AlertOverride">
<summary>
Provides methods for overriding the JavaScript alert() and confirm() methods.
</summary>
</member>
<member name="M:Selenium.Internal.AlertOverride.#ctor(OpenQA.Selenium.IWebDriver)">
<summary>
Initializes a new instance of the AlertOverride class.
</summary>
<param name="driver">The driver to use in overriding the JavaScript alert() and confirm() methods.</param>
</member>
<member name="M:Selenium.Internal.AlertOverride.ReplaceAlertMethod">
<summary>
Replaces the JavaScript alert() and confirm() methods.
</summary>
</member>
<member name="M:Selenium.Internal.AlertOverride.GetNextAlert">
<summary>
Gets the next JavaScript alert message.
</summary>
<returns>The text of the next alert message.</returns>
</member>
<member name="M:Selenium.Internal.AlertOverride.IsAlertPresent">
<summary>
Gets a value indicating whether a JavaScript alert is present.
</summary>
<returns><see langword="true"/> if an alert is present; otherwise <see langword="false"/>.</returns>
</member>
<member name="M:Selenium.Internal.AlertOverride.GetNextConfirmation">
<summary>
Gets the next JavaScript confirm message.
</summary>
<returns>The text of the next confirm message.</returns>
</member>
<member name="M:Selenium.Internal.AlertOverride.IsConfirmationPresent">
<summary>
Gets a value indicating whether a JavaScript confirm is present.
</summary>
<returns><see langword="true"/> if an confirm is present; otherwise <see langword="false"/>.</returns>
</member>
<member name="T:Selenium.Internal.CommandTimer">
<summary>
Provides a timer for running SeleneseCommands
</summary>
</member>
<member name="M:Selenium.Internal.CommandTimer.#ctor(System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.CommandTimer"/> class.
</summary>
<param name="timeout">The timeout, in milliseconds, of the command.</param>
</member>
<member name="M:Selenium.Internal.CommandTimer.Execute(Selenium.Internal.SeleniumEmulation.SeleneseCommand,OpenQA.Selenium.IWebDriver,System.String[])">
<summary>
Executes a command.
</summary>
<param name="commandToExecute">The <see cref="T:Selenium.Internal.SeleniumEmulation.SeleneseCommand"/> to execute.</param>
<param name="commandDriver">The <see cref="T:OpenQA.Selenium.IWebDriver"/> to use in executing the command.</param>
<param name="commandArguments">An array of strings containng the command arguments.</param>
<returns>The result of the command.</returns>
<remarks>This method executes the command on a separate thread.</remarks>
</member>
<member name="P:Selenium.Internal.CommandTimer.Timeout">
<summary>
Gets or sets the timeout for running the command, in milliseconds.
</summary>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.AddLocationStrategy">
<summary>
Defines the command for the addLocationStrategy keyword.
</summary>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.SeleneseCommand">
<summary>
Defines the base class for a command.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.SeleneseCommand.Apply(OpenQA.Selenium.IWebDriver,System.String[])">
<summary>
Applies the arguments to the command.
</summary>
<param name="driver">The driver to use in executing the command.</param>
<param name="args">The command arguments.</param>
<returns>The result of the command.</returns>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.SeleneseCommand.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AddLocationStrategy.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.AddLocationStrategy"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> object used to locate elements.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AddLocationStrategy.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.AddSelection">
<summary>
Defines the command for the addSelection keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AddSelection.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.AddSelection"/> class.
</summary>
<param name="elementFinder">The <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> to use in finding elements.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AddSelection.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.AltKeyDown">
<summary>
Defines the command for the altKeyDown keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AltKeyDown.#ctor(Selenium.Internal.SeleniumEmulation.KeyState)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.AltKeyDown"/> class.
</summary>
<param name="keyState">A <see cref="T:Selenium.Internal.SeleniumEmulation.KeyState"/> object tracking the state of modifier keys.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AltKeyDown.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.AltKeyUp">
<summary>
Defines the command for the altKeyUp keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AltKeyUp.#ctor(Selenium.Internal.SeleniumEmulation.KeyState)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.AltKeyUp"/> class.
</summary>
<param name="keyState">A <see cref="T:Selenium.Internal.SeleniumEmulation.KeyState"/> object tracking the state of modifier keys.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AltKeyUp.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.AssignId">
<summary>
Defines the command for the assignId keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AssignId.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.AssignId"/> class.
</summary>
<param name="finder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used in finding the element to which to assign the ID.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AssignId.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.AttachFile">
<summary>
Defines the command for the attachFile keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AttachFile.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.AttachFile"/> class.
</summary>
<param name="finder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used in finding the element.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.AttachFile.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.CaptureScreenshotToString">
<summary>
Defines the command for the captureScreenshotToString keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.CaptureScreenshotToString.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.Check">
<summary>
Defines the command for the check keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.Check.#ctor(Selenium.Internal.AlertOverride,Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.Check"/> class.
</summary>
<param name="alert">An <see cref="T:Selenium.Internal.AlertOverride"/> object used to handle JavaScript alerts.</param>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.Check.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.Click">
<summary>
Defines the command for the click keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.Click.#ctor(Selenium.Internal.AlertOverride,Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.Click"/> class.
</summary>
<param name="alert">An <see cref="T:Selenium.Internal.AlertOverride"/> object used to handle JavaScript alerts.</param>
<param name="finder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.Click.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.ClickAt">
<summary>
Defines the command for the click keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ClickAt.#ctor(Selenium.Internal.AlertOverride,Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.ClickAt"/> class.
</summary>
<param name="alert">An <see cref="T:Selenium.Internal.AlertOverride"/> object used to handle JavaScript alerts.</param>
<param name="finder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ClickAt.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.Close">
<summary>
Defines the command for the close keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.Close.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.CompoundMutator">
<summary>
A class that collects together a group of other mutators and applies
them in the order they've been added to any script that needs modification.
Any JS to be executed will be wrapped in an "eval" block so that a
meaningful return value can be created.
</summary>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.IScriptMutator">
<summary>
A mechanism for taking a single method from a script meant for Selenium Core
and converting to something that webdriver can evaluate.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.IScriptMutator.Mutate(System.String,System.Text.StringBuilder)">
<summary>
Mutate a script. The original, unmodified script is used to generate a
script on the StringBuilder, the "ToString" method of which should be
used to get the result. We make use of a StringBuilder rather than a
normal String so that we can efficiently chain mutators.
</summary>
<param name="script">The original script.</param>
<param name="outputTo">The mutated script</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.CompoundMutator.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.CompoundMutator"/> class.
</summary>
<param name="basePath">The URL to use in mutating the script.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.CompoundMutator.Mutate(System.String,System.Text.StringBuilder)">
<summary>
Mutate a script so by calling all component mutators on it in turn.
The original, unmodified script is used to generate a script
on the StringBuilder, the "ToString" method of which should be
used to get the result. We make use of a StringBuilder rather than a
normal String so that we can efficiently chain mutators.
</summary>
<param name="script">The original script.</param>
<param name="outputTo">The mutated script.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.CompoundMutator.AddMutator(Selenium.Internal.SeleniumEmulation.IScriptMutator)">
<summary>
Adds a mutator to the collection
</summary>
<param name="mutator">The <see cref="T:Selenium.Internal.SeleniumEmulation.IScriptMutator"/> to add.</param>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.ControlKeyDown">
<summary>
Defines the command for the controlKeyDown keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ControlKeyDown.#ctor(Selenium.Internal.SeleniumEmulation.KeyState)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.ControlKeyDown"/> class.
</summary>
<param name="keyState">A <see cref="T:Selenium.Internal.SeleniumEmulation.KeyState"/> object tracking the state of modifier keys.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ControlKeyDown.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.ControlKeyUp">
<summary>
Defines the command for the controlKeyUp keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ControlKeyUp.#ctor(Selenium.Internal.SeleniumEmulation.KeyState)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.ControlKeyUp"/> class.
</summary>
<param name="keyState">A <see cref="T:Selenium.Internal.SeleniumEmulation.KeyState"/> object tracking the state of modifier keys.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ControlKeyUp.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.CreateCookie">
<summary>
Defines the command for the createCookie keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.CreateCookie.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.DeleteAllVisibleCookies">
<summary>
Defines the command for the deleteAllVisibleCookies keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DeleteAllVisibleCookies.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="ignored">The first parameter to the command.</param>
<param name="alsoIgnored">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.DeleteCookie">
<summary>
Defines the command for the deleteCookie keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DeleteCookie.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.DoubleClick">
<summary>
Defines the command for the doubleClick keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DoubleClick.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.DoubleClick"/> class.
</summary>
<param name="finder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DoubleClick.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.DragAndDrop">
<summary>
Defines the command for the dragAndDrop keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DragAndDrop.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.DragAndDrop"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DragAndDrop.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.DragAndDropToObject">
<summary>
Defines the command for the dragAndDropToObject keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DragAndDropToObject.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.DragAndDropToObject"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.DragAndDropToObject.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.ElementFinder">
<summary>
Provides methods for finding elements.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ElementFinder.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> class.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ElementFinder.FindElement(OpenQA.Selenium.IWebDriver,System.String)">
<summary>
Finds an element.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.IWebDriver"/> to use in finding the elements.</param>
<param name="locator">The locator string describing how to find the element.</param>
<returns>An <see cref="T:OpenQA.Selenium.IWebElement"/> described by the locator.</returns>
<exception cref="T:Selenium.SeleniumException">There is no element matching the locator.</exception>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ElementFinder.FindStrategy(System.String)">
<summary>
Gets the strategy used to find elements.
</summary>
<param name="locator">The locator string that defines the strategy.</param>
<returns>A string used in finding elements.</returns>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.ElementFinder.AddStrategy(System.String,System.String)">
<summary>
Adds a strategy to the dictionary of known lookup strategies.
</summary>
<param name="strategyName">The name used to identify the lookup strategy.</param>
<param name="strategy">The string used in finding elements.</param>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.FindFirstSelectedOptionProperty">
<summary>
Defines the command for the findFirstSelectedOptionProperty keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FindFirstSelectedOptionProperty.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.FindFirstSelectedOptionProperty"/> class.
</summary>
<param name="finder">A <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> that gets options from the element.</param>
<param name="property">The property on which to select the options.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FindFirstSelectedOptionProperty.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.FindSelectedOptionProperties">
<summary>
Defines the command for the findSelectedOptionProperties keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FindSelectedOptionProperties.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.FindSelectedOptionProperties"/> class.
</summary>
<param name="finder">A <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> that gets options from the element.</param>
<param name="property">The property on which to select the options.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FindSelectedOptionProperties.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.FireEvent">
<summary>
Defines the command for the fireEvent keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FireEvent.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.FireEvent"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FireEvent.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.FireNamedEvent">
<summary>
Defines the command for the fireEventNamed keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FireNamedEvent.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.FireNamedEvent"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
<param name="eventName">The name of the event to fire.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FireNamedEvent.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.FunctionDeclaration">
<summary>
A mechanism for taking a function declaration from a script meant for Selenium Core
and converting to something that webdriver can evaluate.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FunctionDeclaration.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.FunctionDeclaration"/> class.
</summary>
<param name="raw">The raw term to mutate.</param>
<param name="result">The result to which to set the term.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.FunctionDeclaration.Mutate(System.String,System.Text.StringBuilder)">
<summary>
Mutate a script so that function declarations have the correct scope.
The original, unmodified script is used to generate a script
on the StringBuilder, the "ToString" method of which should be
used to get the result. We make use of a StringBuilder rather than a
normal String so that we can efficiently chain mutators.
</summary>
<param name="script">The original script.</param>
<param name="outputTo">The mutated script.</param>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetAlert">
<summary>
Defines the command for the getAlert keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAlert.#ctor(Selenium.Internal.AlertOverride)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.GetAlert"/> class.
</summary>
<param name="alertOverride">An <see cref="T:Selenium.Internal.AlertOverride"/> object used to handle JavaScript alerts.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAlert.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetAllButtons">
<summary>
Defines the command for the getAllButtons keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAllButtons.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetAllFields">
<summary>
Defines the command for the getAllFields keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAllFields.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetAllLinks">
<summary>
Defines the command for the getAllLinks keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAllLinks.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetAllWindowTitles">
<summary>
Defines the command for the getAllWindowTitles keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAllWindowTitles.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetAttribute">
<summary>
Defines the command for the getAttribute keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAttribute.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.GetAttribute"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAttribute.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetAttributeFromAllWindows">
<summary>
Defines the command for the getAttributeFromAllWindows keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetAttributeFromAllWindows.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetBodyText">
<summary>
Defines the command for the getBodyText keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetBodyText.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetConfirmation">
<summary>
Defines the command for the getConfirmation keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetConfirmation.#ctor(Selenium.Internal.AlertOverride)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.GetConfirmation"/> class.
</summary>
<param name="alertOverride">An <see cref="T:Selenium.Internal.AlertOverride"/> object used to handle JavaScript alerts.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetConfirmation.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetCookie">
<summary>
Defines the command for the getCookie keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetCookie.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetCookieByName">
<summary>
Defines the command for the getCookieByName keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetCookieByName.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetCssCount">
<summary>
Defines the command for the getCssCount keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetCssCount.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetElementHeight">
<summary>
Defines the command for the getElementHeight keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetElementHeight.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.GetElementHeight"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetElementHeight.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetElementIndex">
<summary>
Defines the command for the getElementIndex keyword.
</summary>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetElementIndex.#ctor(Selenium.Internal.SeleniumEmulation.ElementFinder)">
<summary>
Initializes a new instance of the <see cref="T:Selenium.Internal.SeleniumEmulation.GetElementIndex"/> class.
</summary>
<param name="elementFinder">An <see cref="T:Selenium.Internal.SeleniumEmulation.ElementFinder"/> used to find the element on which to execute the command.</param>
</member>
<member name="M:Selenium.Internal.SeleniumEmulation.GetElementIndex.HandleSeleneseCommand(OpenQA.Selenium.IWebDriver,System.String,System.String)">
<summary>
Handles the command.
</summary>
<param name="driver">The driver used to execute the command.</param>
<param name="locator">The first parameter to the command.</param>
<param name="value">The second parameter to the command.</param>
<returns>The result of the command.</returns>
</member>
<member name="T:Selenium.Internal.SeleniumEmulation.GetElementPositionLeft">
<summary>
Defines the command for the getElementPositionLeft keyword.
</summary>