-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWebDriver.xml
18443 lines (18439 loc) · 925 KB
/
WebDriver.xml
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>WebDriver</name>
</assembly>
<members>
<member name="T:OpenQA.Selenium.By">
<summary>
Provides a mechanism by which to find elements within a document.
</summary>
<remarks>It is possible to create your own locating mechanisms for finding documents.
In order to do this,subclass this class and override the protected methods. However,
it is expected that that all subclasses rely on the basic finding mechanisms provided
through static methods of this class. An example of this can be found in OpenQA.Support.ByIdOrName
</remarks>
</member>
<member name="M:OpenQA.Selenium.By.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.By" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.By.#ctor(System.Func{OpenQA.Selenium.ISearchContext,OpenQA.Selenium.IWebElement},System.Func{OpenQA.Selenium.ISearchContext,System.Collections.ObjectModel.ReadOnlyCollection{OpenQA.Selenium.IWebElement}})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.By" /> class using the given functions to find elements.
</summary>
<param name="findElementMethod">A function that takes an object implementing <see cref="T:OpenQA.Selenium.ISearchContext" />
and returns the found <see cref="T:OpenQA.Selenium.IWebElement" />.</param>
<param name="findElementsMethod">A function that takes an object implementing <see cref="T:OpenQA.Selenium.ISearchContext" />
and returns a <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of the found<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see>.
<see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see>/>.</param>
</member>
<member name="M:OpenQA.Selenium.By.Id(System.String)">
<summary>
Gets a mechanism to find elements by their ID.
</summary>
<param name="idToFind">The ID to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.LinkText(System.String)">
<summary>
Gets a mechanism to find elements by their link text.
</summary>
<param name="linkTextToFind">The link text to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.Name(System.String)">
<summary>
Gets a mechanism to find elements by their name.
</summary>
<param name="nameToFind">The name to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.XPath(System.String)">
<summary>
Gets a mechanism to find elements by an XPath query.
When searching within a WebElement using xpath be aware that WebDriver follows standard conventions:
a search prefixed with "//" will search the entire document, not just the children of this current node.
Use ".//" to limit your search to the children of this WebElement.
</summary>
<param name="xpathToFind">The XPath query to use.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.ClassName(System.String)">
<summary>
Gets a mechanism to find elements by their CSS class.
</summary>
<param name="classNameToFind">The CSS class to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
<remarks>If an element has many classes then this will match against each of them.
For example if the value is "one two onone", then the following values for the
className parameter will match: "one" and "two".</remarks>
</member>
<member name="M:OpenQA.Selenium.By.PartialLinkText(System.String)">
<summary>
Gets a mechanism to find elements by a partial match on their link text.
</summary>
<param name="partialLinkTextToFind">The partial link text to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.TagName(System.String)">
<summary>
Gets a mechanism to find elements by their tag name.
</summary>
<param name="tagNameToFind">The tag name to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.CssSelector(System.String)">
<summary>
Gets a mechanism to find elements by their cascading style sheet (CSS) selector.
</summary>
<param name="cssSelectorToFind">The CSS selector to find.</param>
<returns>A <see cref="T:OpenQA.Selenium.By" /> object the driver can use to find the elements.</returns>
</member>
<member name="M:OpenQA.Selenium.By.op_Equality(OpenQA.Selenium.By,OpenQA.Selenium.By)">
<summary>
Determines if two <see cref="T:OpenQA.Selenium.By" /> instances are equal.
</summary>
<param name="one">One instance to compare.</param>
<param name="two">The other instance to compare.</param>
<returns>
<see langword="true" /> if the two instances are equal; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.By.op_Inequality(OpenQA.Selenium.By,OpenQA.Selenium.By)">
<summary>
Determines if two <see cref="T:OpenQA.Selenium.By" /> instances are unequal.
</summary>s
<param name="one">One instance to compare.</param><param name="two">The other instance to compare.</param><returns><see langword="true" /> if the two instances are not equal; otherwise, <see langword="false" />.</returns></member>
<member name="M:OpenQA.Selenium.By.FindElement(OpenQA.Selenium.ISearchContext)">
<summary>
Finds the first element matching the criteria.
</summary>
<param name="context">An <see cref="T:OpenQA.Selenium.ISearchContext" /> object to use to search for the elements.</param>
<returns>The first matching <see cref="T:OpenQA.Selenium.IWebElement" /> on the current context.</returns>
</member>
<member name="M:OpenQA.Selenium.By.FindElements(OpenQA.Selenium.ISearchContext)">
<summary>
Finds all elements matching the criteria.
</summary>
<param name="context">An <see cref="T:OpenQA.Selenium.ISearchContext" /> object to use to search for the elements.</param>
<returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of all <see cref="T:OpenQA.Selenium.IWebElement">WebElements</see>
matching the current criteria, or an empty list if nothing matches.</returns>
</member>
<member name="M:OpenQA.Selenium.By.ToString">
<summary>
Gets a string representation of the finder.
</summary>
<returns>The string displaying the finder content.</returns>
</member>
<member name="M:OpenQA.Selenium.By.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object">Object</see> is equal
to the current <see cref="T:System.Object">Object</see>.
</summary>
<param name="obj">The <see cref="T:System.Object">Object</see> to compare with the
current <see cref="T:System.Object">Object</see>.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Object">Object</see>
is equal to the current <see cref="T:System.Object">Object</see>; otherwise,
<see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.By.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>A hash code for the current <see cref="T:System.Object">Object</see>.</returns>
</member>
<member name="P:OpenQA.Selenium.By.Description">
<summary>
Gets or sets the value of the description for this <see cref="T:OpenQA.Selenium.By" /> class instance.
</summary>
</member>
<member name="P:OpenQA.Selenium.By.FindElementMethod">
<summary>
Gets or sets the method used to find a single element matching specified criteria.
</summary>
</member>
<member name="P:OpenQA.Selenium.By.FindElementsMethod">
<summary>
Gets or sets the method used to find all elements matching specified criteria.
</summary>
</member>
<member name="T:OpenQA.Selenium.Cookie">
<summary>
Represents a cookie in the browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String,System.String,System.String,System.Nullable{System.DateTime})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name,
value, domain, path and expiration date.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<param name="domain">The domain of the cookie.</param>
<param name="path">The path of the cookie.</param>
<param name="expiry">The expiration date of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String,System.String,System.Nullable{System.DateTime})">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name,
value, path and expiration date.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<param name="path">The path of the cookie.</param>
<param name="expiry">The expiration date of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name,
value, and path.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<param name="path">The path of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Cookie" /> class with a specific name and value.
</summary>
<param name="name">The name of the cookie.</param>
<param name="value">The value of the cookie.</param>
<exception cref="T:System.ArgumentException">If the name is <see langword="null" /> or an empty string,
or if it contains a semi-colon.</exception>
<exception cref="T:System.ArgumentNullException">If the value is <see langword="null" />.</exception>
</member>
<member name="M:OpenQA.Selenium.Cookie.FromDictionary(System.Collections.Generic.Dictionary{System.String,System.Object})">
<summary>
Converts a Dictionary to a Cookie.
</summary>
<param name="rawCookie">The Dictionary object containing the cookie parameters.</param>
<returns>A <see cref="T:OpenQA.Selenium.Cookie" /> object with the proper parameters set.</returns>
</member>
<member name="M:OpenQA.Selenium.Cookie.ToString">
<summary>
Creates and returns a string representation of the cookie.
</summary>
<returns>A string representation of the cookie.</returns>
</member>
<member name="M:OpenQA.Selenium.Cookie.Equals(System.Object)">
<summary>
Determines whether the specified <see cref="T:System.Object">Object</see> is equal
to the current <see cref="T:System.Object">Object</see>.
</summary>
<param name="obj">The <see cref="T:System.Object">Object</see> to compare with the
current <see cref="T:System.Object">Object</see>.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Object">Object</see>
is equal to the current <see cref="T:System.Object">Object</see>; otherwise,
<see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.Cookie.GetHashCode">
<summary>
Serves as a hash function for a particular type.
</summary>
<returns>A hash code for the current <see cref="T:System.Object">Object</see>.</returns>
</member>
<member name="P:OpenQA.Selenium.Cookie.Name">
<summary>
Gets the name of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Value">
<summary>
Gets the value of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Domain">
<summary>
Gets the domain of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Path">
<summary>
Gets the path of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Secure">
<summary>
Gets a value indicating whether the cookie is secure.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.Expiry">
<summary>
Gets the expiration date of the cookie.
</summary>
</member>
<member name="P:OpenQA.Selenium.Cookie.ExpirySeconds">
<summary>
Gets the cookie expiration date in seconds from the defined zero date (01 January 1970 00:00:00 UTC).
</summary>
<remarks>This property only exists so that the JSON serializer can serialize a
cookie without resorting to a custom converter.</remarks>
</member>
<member name="T:OpenQA.Selenium.IFileDetector">
<summary>
Defines an object responsible for detecting sequences of keystrokes
representing file paths and names.
</summary>
</member>
<member name="M:OpenQA.Selenium.IFileDetector.IsFile(System.String)">
<summary>
Returns a value indicating whether a specified key sequence represents
a file name and path.
</summary>
<param name="keySequence">The sequence to test for file existence.</param>
<returns>
<see langword="true" /> if the key sequence represents a file; otherwise, <see langword="false" />.</returns>
</member>
<member name="T:OpenQA.Selenium.DefaultFileDetector">
<summary>
Represents the default file detector for determining whether a file
must be uploaded to a remote server.
</summary>
</member>
<member name="M:OpenQA.Selenium.DefaultFileDetector.IsFile(System.String)">
<summary>
Returns a value indicating whether a specified key sequence represents
a file name and path.
</summary>
<param name="keySequence">The sequence to test for file existence.</param>
<returns>This method always returns <see langword="false" /> in this implementation.</returns>
</member>
<member name="T:OpenQA.Selenium.Remote.ICommandServer">
<summary>
Provides a way to start a server that understands remote commands
</summary>
</member>
<member name="M:OpenQA.Selenium.Remote.ICommandServer.Start">
<summary>
Starts the server.
</summary>
</member>
<member name="T:OpenQA.Selenium.DriverService">
<summary>
Exposes the service provided by a native WebDriver server executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverService.#ctor(System.String,System.Int32,System.String,System.Uri)">
<summary>
Initializes a new instance of the DriverService class.
</summary>
<param name="servicePath">The full path to the directory containing the executable providing the service to drive the browser.</param>
<param name="port">The port on which the driver executable should listen.</param>
<param name="driverServiceExecutableName">The file name of the driver service executable.</param>
<param name="driverServiceDownloadUrl">A URL at which the driver service executable may be downloaded.</param>
<exception cref="T:System.ArgumentException">
If the path specified is <see langword="null" /> or an empty string.
</exception>
<exception cref="T:OpenQA.Selenium.DriverServiceNotFoundException">
If the specified driver service executable does not exist in the specified directory.
</exception>
</member>
<member name="M:OpenQA.Selenium.DriverService.Dispose">
<summary>
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService" />.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverService.Start">
<summary>
Starts the DriverService.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverService.FindDriverServiceExecutable(System.String,System.Uri)">
<summary>
Finds the specified driver service executable.
</summary>
<param name="executableName">The file name of the executable to find.</param>
<param name="downloadUrl">A URL at which the driver service executable may be downloaded.</param>
<returns>The directory containing the driver service executable.</returns>
<exception cref="T:OpenQA.Selenium.DriverServiceNotFoundException">
If the specified driver service executable does not exist in the current directory or in a directory on the system path.
</exception>
</member>
<member name="M:OpenQA.Selenium.DriverService.Dispose(System.Boolean)">
<summary>
Releases all resources associated with this <see cref="T:OpenQA.Selenium.DriverService" />.
</summary>
<param name="disposing">
<see langword="true" /> if the Dispose method was explicitly called; otherwise, <see langword="false" />.</param>
</member>
<member name="M:OpenQA.Selenium.DriverService.Stop">
<summary>
Stops the DriverService.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.ServiceUrl">
<summary>
Gets the Uri of the service.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.Port">
<summary>
Gets or sets the port of the service.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.SuppressInitialDiagnosticInformation">
<summary>
Gets or sets a value indicating whether the initial diagnostic information is suppressed
when starting the driver server executable. Defaults to <see langword="false" />, meaning
diagnostic information should be shown by the driver server executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.IsRunning">
<summary>
Gets a value indicating whether the service is running.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.HideCommandPromptWindow">
<summary>
Gets or sets a value indicating whether the command prompt window of the service should be hidden.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.ProcessId">
<summary>
Gets the process ID of the running driver service executable. Returns 0 if the process is not running.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.DriverServiceExecutableName">
<summary>
Gets the executable file name of the driver service.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="T:OpenQA.Selenium.WebDriverException">
<summary>
Represents exceptions that are thrown when an error occurs during actions.
</summary>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.WebDriverException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.WebDriverException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.DriverServiceNotFoundException">
<summary>
The exception that is thrown when an element is not visible.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.DriverServiceNotFoundException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.DriverServiceNotFoundException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.ElementNotVisibleException">
<summary>
The exception that is thrown when an element is not visible.
</summary>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.ElementNotVisibleException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.ElementNotVisibleException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.IAlert">
<summary>
Defines the interface through which the user can manipulate JavaScript alerts.
</summary>
</member>
<member name="M:OpenQA.Selenium.IAlert.Dismiss">
<summary>
Dismisses the alert.
</summary>
</member>
<member name="M:OpenQA.Selenium.IAlert.Accept">
<summary>
Accepts the alert.
</summary>
</member>
<member name="M:OpenQA.Selenium.IAlert.SendKeys(System.String)">
<summary>
Sends keys to the alert.
</summary>
<param name="keysToSend">The keystrokes to send.</param>
</member>
<member name="P:OpenQA.Selenium.IAlert.Text">
<summary>
Gets the text of the alert.
</summary>
</member>
<member name="T:OpenQA.Selenium.IAllowsFileDetection">
<summary>
Interface determining whether the driver implementation allows detection of files
when sending keystrokes to a file upload element.
</summary>
</member>
<member name="P:OpenQA.Selenium.IAllowsFileDetection.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
</member>
<member name="T:OpenQA.Selenium.ICapabilities">
<summary>
Capabilities of the browser that you are going to use
</summary>
</member>
<member name="M:OpenQA.Selenium.ICapabilities.HasCapability(System.String)">
<summary>
Gets a value indicating whether the browser has a given capability.
</summary>
<param name="capability">The capability to get.</param>
<returns>Returns <see langword="true" /> if the browser has the capability; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:OpenQA.Selenium.ICapabilities.GetCapability(System.String)">
<summary>
Gets a capability of the browser.
</summary>
<param name="capability">The capability to get.</param>
<returns>An object associated with the capability, or <see langword="null" />
if the capability is not set on the browser.</returns>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.BrowserName">
<summary>
Gets the browser name
</summary>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.Platform">
<summary>
Gets the platform
</summary>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.Version">
<summary>
Gets the browser version
</summary>
</member>
<member name="P:OpenQA.Selenium.ICapabilities.IsJavaScriptEnabled">
<summary>
Gets a value indicating whether the browser is JavaScript enabled
</summary>
</member>
<member name="T:OpenQA.Selenium.ICookieJar">
<summary>
Defines an interface allowing the user to manipulate cookies on the current page.
</summary>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.AddCookie(OpenQA.Selenium.Cookie)">
<summary>
Adds a cookie to the current page.
</summary>
<param name="cookie">The <see cref="T:OpenQA.Selenium.Cookie" /> object to be added.</param>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.GetCookieNamed(System.String)">
<summary>
Gets a cookie with the specified name.
</summary>
<param name="name">The name of the cookie to retrieve.</param>
<returns>The <see cref="T:OpenQA.Selenium.Cookie" /> containing the name. Returns <see langword="null" />
if no cookie with the specified name is found.</returns>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.DeleteCookie(OpenQA.Selenium.Cookie)">
<summary>
Deletes the specified cookie from the page.
</summary>
<param name="cookie">The <see cref="T:OpenQA.Selenium.Cookie" /> to be deleted.</param>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.DeleteCookieNamed(System.String)">
<summary>
Deletes the cookie with the specified name from the page.
</summary>
<param name="name">The name of the cookie to be deleted.</param>
</member>
<member name="M:OpenQA.Selenium.ICookieJar.DeleteAllCookies">
<summary>
Deletes all cookies from the page.
</summary>
</member>
<member name="P:OpenQA.Selenium.ICookieJar.AllCookies">
<summary>
Gets all cookies defined for the current page.
</summary>
</member>
<member name="T:OpenQA.Selenium.IHasCapabilities">
<summary>
Defines the interface through which the user can determine the capabilities of a driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasCapabilities.Capabilities">
<summary>
Gets the <see cref="T:OpenQA.Selenium.ICapabilities" /> object describing the driver's capabilities.
</summary>
</member>
<member name="T:OpenQA.Selenium.IHasInputDevices">
<summary>
Provides access to input devices for advanced user interactions.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasInputDevices.Keyboard">
<summary>
Gets an <see cref="T:OpenQA.Selenium.IKeyboard" /> object for sending keystrokes to the browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasInputDevices.Mouse">
<summary>
Gets an <see cref="T:OpenQA.Selenium.IMouse" /> object for sending mouse commands to the browser.
</summary>
</member>
<member name="T:OpenQA.Selenium.IHasTouchScreen">
<summary>
Interface implemented by each driver that allows access to touch screen capabilities.
</summary>
</member>
<member name="P:OpenQA.Selenium.IHasTouchScreen.TouchScreen">
<summary>
Gets the device representing the touch screen.
</summary>
</member>
<member name="T:OpenQA.Selenium.IJavaScriptExecutor">
<summary>
Defines the interface through which the user can execute JavaScript.
</summary>
</member>
<member name="M:OpenQA.Selenium.IJavaScriptExecutor.ExecuteScript(System.String,System.Object[])">
<summary>
Executes JavaScript in the context of the currently selected frame or window.
</summary>
<param name="script">The JavaScript code to execute.</param>
<param name="args">The arguments to the script.</param>
<returns>The value returned by the script.</returns>
<remarks>
<para>
The <see cref="M:OpenQA.Selenium.IJavaScriptExecutor.ExecuteScript(System.String,System.Object[])" />method executes JavaScript in the context of
the currently selected frame or window. This means that "document" will refer
to the current document. If the script has a return value, then the following
steps will be taken:
</para>
<para>
<list type="bullet">
<item>
<description>For an HTML element, this method returns a <see cref="T:OpenQA.Selenium.IWebElement" /></description>
</item>
<item>
<description>For a number, a <see cref="T:System.Int64" /> is returned</description>
</item>
<item>
<description>For a boolean, a <see cref="T:System.Boolean" /> is returned</description>
</item>
<item>
<description>For all other cases a <see cref="T:System.String" /> is returned.</description>
</item>
<item>
<description>For an array,we check the first element, and attempt to return a
<see cref="T:System.Collections.Generic.List`1" /> of that type, following the rules above. Nested lists are not
supported.</description>
</item>
<item>
<description>If the value is null or there is no return value,
<see langword="null" /> is returned.</description>
</item>
</list>
</para>
<para>
Arguments must be a number (which will be converted to a <see cref="T:System.Int64" />),
a <see cref="T:System.Boolean" />, a <see cref="T:System.String" /> or a <see cref="T:OpenQA.Selenium.IWebElement" />.
An exception will be thrown if the arguments do not meet these criteria.
The arguments will be made available to the JavaScript via the "arguments" magic
variable, as if the function were called via "Function.apply"
</para>
</remarks>
</member>
<member name="M:OpenQA.Selenium.IJavaScriptExecutor.ExecuteAsyncScript(System.String,System.Object[])">
<summary>
Executes JavaScript asynchronously in the context of the currently selected frame or window.
</summary>
<param name="script">The JavaScript code to execute.</param>
<param name="args">The arguments to the script.</param>
<returns>The value returned by the script.</returns>
</member>
<member name="T:OpenQA.Selenium.IKeyboard">
<summary>
Provides methods representing basic keyboard actions.
</summary>
</member>
<member name="M:OpenQA.Selenium.IKeyboard.SendKeys(System.String)">
<summary>
Sends a sequence of keystrokes to the target.
</summary>
<param name="keySequence">A string representing the keystrokes to send.</param>
</member>
<member name="M:OpenQA.Selenium.IKeyboard.PressKey(System.String)">
<summary>
Presses a key.
</summary>
<param name="keyToPress">The key value representing the key to press.</param>
<remarks>The key value must be one of the values from the <see cref="T:OpenQA.Selenium.Keys" /> class.</remarks>
</member>
<member name="M:OpenQA.Selenium.IKeyboard.ReleaseKey(System.String)">
<summary>
Releases a key.
</summary>
<param name="keyToRelease">The key value representing the key to release.</param>
<remarks>The key value must be one of the values from the <see cref="T:OpenQA.Selenium.Keys" /> class.</remarks>
</member>
<member name="T:OpenQA.Selenium.IllegalLocatorException">
<summary>
The exception that is thrown when an attempt is made to locate an item using invalid criteria.
</summary>
</member>
<member name="M:OpenQA.Selenium.IllegalLocatorException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IllegalLocatorException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.IllegalLocatorException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IllegalLocatorException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.IllegalLocatorException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IllegalLocatorException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.IllegalLocatorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.IllegalLocatorException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.ILocatable">
<summary>
Defines the interface through which the user can discover where an element is on the screen.
</summary>
</member>
<member name="P:OpenQA.Selenium.ILocatable.LocationOnScreenOnceScrolledIntoView">
<summary>
Gets the location of an element on the screen, scrolling it into view
if it is not currently on the screen.
</summary>
</member>
<member name="P:OpenQA.Selenium.ILocatable.Coordinates">
<summary>
Gets the coordinates identifying the location of this element using
various frames of reference.
</summary>
</member>
<member name="T:OpenQA.Selenium.IMouse">
<summary>
Provides methods representing basic mouse actions.
</summary>
</member>
<member name="M:OpenQA.Selenium.IMouse.Click(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Clicks at a set of coordinates using the primary mouse button.
</summary>
<param name="where">An <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.DoubleClick(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Double-clicks at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to double-click.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseDown(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Presses the primary mouse button at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to press the mouse button down.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseUp(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Releases the primary mouse button at a set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to release the mouse button.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseMove(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Moves the mouse to the specified set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to move the mouse to.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.MouseMove(OpenQA.Selenium.Interactions.Internal.ICoordinates,System.Int32,System.Int32)">
<summary>
Moves the mouse to the specified set of coordinates.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
<param name="offsetX">A horizontal offset from the coordinates specified in <paramref name="where" />.</param>
<param name="offsetY">A vertical offset from the coordinates specified in <paramref name="where" />.</param>
</member>
<member name="M:OpenQA.Selenium.IMouse.ContextClick(OpenQA.Selenium.Interactions.Internal.ICoordinates)">
<summary>
Clicks at a set of coordinates using the secondary mouse button.
</summary>
<param name="where">A <see cref="T:OpenQA.Selenium.Interactions.Internal.ICoordinates" /> describing where to click.</param>
</member>
<member name="T:OpenQA.Selenium.INavigation">
<summary>
Defines an interface allowing the user to access the browser's history and to
navigate to a given URL.
</summary>
</member>
<member name="M:OpenQA.Selenium.INavigation.Back">
<summary>
Move back a single entry in the browser's history.
</summary>
</member>
<member name="M:OpenQA.Selenium.INavigation.Forward">
<summary>
Move a single "item" forward in the browser's history.
</summary>
<remarks>Does nothing if we are on the latest page viewed.</remarks>
</member>
<member name="M:OpenQA.Selenium.INavigation.GoToUrl(System.String)">
<summary>
Load a new web page in the current browser window.
</summary>
<param name="url">The URL to load. It is best to use a fully qualified URL</param>
<remarks>
Calling the <see cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.String)" /> method will load a new web page in the current browser window.
This is done using an HTTP GET operation, and the method will block until the
load is complete. This will follow redirects issued either by the server or
as a meta-redirect from within the returned HTML. Should a meta-redirect "rest"
for any duration of time, it is best to wait until this timeout is over, since
should the underlying page change while your test is executing the results of
future calls against this interface will be against the freshly loaded page.
</remarks>
</member>
<member name="M:OpenQA.Selenium.INavigation.GoToUrl(System.Uri)">
<summary>
Load a new web page in the current browser window.
</summary>
<param name="url">The URL to load.</param>
<remarks>
Calling the <see cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.Uri)" /> method will load a new web page in the current browser window.
This is done using an HTTP GET operation, and the method will block until the
load is complete. This will follow redirects issued either by the server or
as a meta-redirect from within the returned HTML. Should a meta-redirect "rest"
for any duration of time, it is best to wait until this timeout is over, since
should the underlying page change while your test is executing the results of
future calls against this interface will be against the freshly loaded page.
</remarks>
</member>
<member name="M:OpenQA.Selenium.INavigation.Refresh">
<summary>
Refreshes the current page.
</summary>
</member>
<member name="T:OpenQA.Selenium.InvalidCookieDomainException">
<summary>
The exception that is thrown when the users attempts to set a cookie with an invalid domain.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidCookieDomainException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidCookieDomainException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.InvalidElementStateException">
<summary>
The exception that is thrown when a reference to an element is no longer valid.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class with
a specified error message.
</summary>
<param name="message">The message that describes the error.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor(System.String,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class with
a specified error message and a reference to the inner exception that is the
cause of this exception.
</summary>
<param name="message">The error message that explains the reason for the exception.</param>
<param name="innerException">The exception that is the cause of the current exception,
or <see langword="null" /> if no inner exception is specified.</param>
</member>
<member name="M:OpenQA.Selenium.InvalidElementStateException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.InvalidElementStateException" /> class with serialized data.
</summary>
<param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized
object data about the exception being thrown.</param>
<param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual
information about the source or destination.</param>
</member>
<member name="T:OpenQA.Selenium.NotFoundException">
<summary>
The exception that is thrown when an item is not found.
</summary>
</member>
<member name="M:OpenQA.Selenium.NotFoundException.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.NotFoundException" /> class.
</summary>