-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebDriver.Support.xml
2498 lines (2497 loc) · 155 KB
/
WebDriver.Support.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.Support</name>
</assembly>
<members>
<member name="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver">
<summary>
A wrapper around an arbitrary WebDriver instance which supports registering for
events, e.g. for logging purposes.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.#ctor(OpenQA.Selenium.IWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver"/> class.
</summary>
<param name="parentDriver">The driver to register events for.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Close">
<summary>
Close the current window, quitting the browser if it is the last window currently open.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Quit">
<summary>
Quits this driver, closing every associated window.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Manage">
<summary>
Instructs the driver to change its settings.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.IOptions"/> object allowing the user to change
the settings of the driver.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Navigate">
<summary>
Instructs the driver to navigate the browser to another location.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.INavigation"/> object allowing the user to access
the browser's history and to navigate to a given URL.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.SwitchTo">
<summary>
Instructs the driver to send future commands to a different frame or window.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.ITargetLocator"/> object which can be used to select
a frame or window.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.FindElement(OpenQA.Selenium.By)">
<summary>
Find the first <see cref="T:OpenQA.Selenium.IWebElement"/> using the given method.
</summary>
<param name="by">The locating mechanism to use.</param>
<returns>The first matching <see cref="T:OpenQA.Selenium.IWebElement"/> on the current context.</returns>
<exception cref="T:OpenQA.Selenium.NoSuchElementException">If no element matches the criteria.</exception>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.FindElements(OpenQA.Selenium.By)">
<summary>
Find all <see cref="T:OpenQA.Selenium.IWebElement">IWebElements</see> within the current context
using the given mechanism.
</summary>
<param name="by">The locating mechanism to use.</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.Support.Events.EventFiringWebDriver.Dispose">
<summary>
Frees all managed and unmanaged resources used by this instance.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.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.Support.Events.EventFiringWebDriver.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.Support.Events.EventFiringWebDriver.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="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.GetScreenshot">
<summary>
Gets a <see cref="T:OpenQA.Selenium.Screenshot"/> object representing the image of the page on the screen.
</summary>
<returns>A <see cref="T:OpenQA.Selenium.Screenshot"/> object containing the image.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Dispose(System.Boolean)">
<summary>
Frees all managed and, optionally, unmanaged resources used by this instance.
</summary>
<param name="disposing"><see langword="true"/> to dispose of only managed resources;
<see langword="false"/> to dispose of managed and unmanaged resources.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnNavigating(OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Navigating"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnNavigated(OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Navigated"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnNavigatingBack(OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatingBack"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnNavigatedBack(OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatedBack"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnNavigatingForward(OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatingForward"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnNavigatedForward(OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatedForward"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnElementClicking(OpenQA.Selenium.Support.Events.WebElementEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementClicking"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebElementEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnElementClicked(OpenQA.Selenium.Support.Events.WebElementEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementClicked"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebElementEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnElementValueChanging(OpenQA.Selenium.Support.Events.WebElementEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementValueChanging"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebElementEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnElementValueChanged(OpenQA.Selenium.Support.Events.WebElementEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementValueChanged"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebElementEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnFindingElement(OpenQA.Selenium.Support.Events.FindElementEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.FindingElement"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.FindElementEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnFindElementCompleted(OpenQA.Selenium.Support.Events.FindElementEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.FindElementCompleted"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.FindElementEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnScriptExecuting(OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ScriptExecuting"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnScriptExecuted(OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ScriptExecuted"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs"/> that contains the event data.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.OnException(OpenQA.Selenium.Support.Events.WebDriverExceptionEventArgs)">
<summary>
Raises the <see cref="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ExceptionThrown"/> event.
</summary>
<param name="e">A <see cref="T:OpenQA.Selenium.Support.Events.WebDriverExceptionEventArgs"/> that contains the event data.</param>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Navigating">
<summary>
Fires before the driver begins navigation.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Navigated">
<summary>
Fires after the driver completes navigation
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatingBack">
<summary>
Fires before the driver begins navigation back one entry in the browser history list.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatedBack">
<summary>
Fires after the driver completes navigation back one entry in the browser history list.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatingForward">
<summary>
Fires before the driver begins navigation forward one entry in the browser history list.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.NavigatedForward">
<summary>
Fires after the driver completes navigation forward one entry in the browser history list.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementClicking">
<summary>
Fires before the driver clicks on an element.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementClicked">
<summary>
Fires after the driver has clicked on an element.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementValueChanging">
<summary>
Fires before the driver changes the value of an element via Clear(), SendKeys() or Toggle().
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ElementValueChanged">
<summary>
Fires after the driver has changed the value of an element via Clear(), SendKeys() or Toggle().
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.FindingElement">
<summary>
Fires before the driver starts to find an element.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.FindElementCompleted">
<summary>
Fires after the driver completes finding an element.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ScriptExecuting">
<summary>
Fires before a script is executed.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ScriptExecuted">
<summary>
Fires after a script is executed.
</summary>
</member>
<member name="E:OpenQA.Selenium.Support.Events.EventFiringWebDriver.ExceptionThrown">
<summary>
Fires when an exception is thrown.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.WrappedDriver">
<summary>
Gets the <see cref="T:OpenQA.Selenium.IWebDriver"/> wrapped by this EventsFiringWebDriver instance.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Url">
<summary>
Gets or sets the URL the browser is currently displaying.
</summary>
<remarks>
Setting the <see cref="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Url"/> property 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>
<seealso cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.String)"/>
<seealso cref="M:OpenQA.Selenium.INavigation.GoToUrl(System.Uri)"/>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.Title">
<summary>
Gets the title of the current browser window.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.PageSource">
<summary>
Gets the source of the page last loaded by the browser.
</summary>
<remarks>
If the page has been modified after loading (for example, by JavaScript)
there is no guarantee that the returned text is that of the modified page.
Please consult the documentation of the particular driver being used to
determine whether the returned text reflects the current state of the page
or the text last sent by the web server. The page source returned is a
representation of the underlying DOM: do not expect it to be formatted
or escaped in the same way as the response sent from the web server.
</remarks>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.CurrentWindowHandle">
<summary>
Gets the current window handle, which is an opaque handle to this
window that uniquely identifies it within this driver instance.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.WindowHandles">
<summary>
Gets the window handles of open browser windows.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation">
<summary>
Provides a mechanism for Navigating with the driver.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation.#ctor(OpenQA.Selenium.Support.Events.EventFiringWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation"/> class
</summary>
<param name="driver">Driver in use</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation.Back">
<summary>
Move the browser back
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation.Forward">
<summary>
Move the browser forward
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation.GoToUrl(System.String)">
<summary>
Navigate to a url for your test
</summary>
<param name="url">String of where you want the browser to go to</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation.GoToUrl(System.Uri)">
<summary>
Navigate to a url for your test
</summary>
<param name="url">Uri object of where you want the browser to go to</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringNavigation.Refresh">
<summary>
Refresh the browser
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringOptions">
<summary>
Provides a mechanism for setting options needed for the driver during the test.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringOptions.#ctor(OpenQA.Selenium.Support.Events.EventFiringWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringOptions"/> class
</summary>
<param name="driver">Instance of the driver currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringOptions.Timeouts">
<summary>
Provides access to the timeouts defined for this driver.
</summary>
<returns>An object implementing the <see cref="T:OpenQA.Selenium.ITimeouts"/> interface.</returns>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringOptions.Cookies">
<summary>
Gets an object allowing the user to manipulate cookies on the page.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringOptions.Window">
<summary>
Gets an object allowing the user to manipulate the currently-focused browser window.
</summary>
<remarks>"Currently-focused" is defined as the browser window having the window handle
returned when IWebDriver.CurrentWindowHandle is called.</remarks>
</member>
<member name="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator">
<summary>
Provides a mechanism for finding elements on the page with locators.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.#ctor(OpenQA.Selenium.Support.Events.EventFiringWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator"/> class
</summary>
<param name="driver">The driver that is currently in use</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.Frame(System.Int32)">
<summary>
Move to a different frame using its index
</summary>
<param name="frameIndex">The index of the </param>
<returns>A WebDriver instance that is currently in use</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.Frame(System.String)">
<summary>
Move to different frame using its name
</summary>
<param name="frameName">name of the frame</param>
<returns>A WebDriver instance that is currently in use</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.Frame(OpenQA.Selenium.IWebElement)">
<summary>
Move to a frame element.
</summary>
<param name="frameElement">a previously found FRAME or IFRAME element.</param>
<returns>A WebDriver instance that is currently in use.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.ParentFrame">
<summary>
Select the parent frame of the currently selected frame.
</summary>
<returns>An <see cref="T:OpenQA.Selenium.IWebDriver"/> instance focused on the specified frame.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.Window(System.String)">
<summary>
Change to the Window by passing in the name
</summary>
<param name="windowName">name of the window that you wish to move to</param>
<returns>A WebDriver instance that is currently in use</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.DefaultContent">
<summary>
Change the active frame to the default
</summary>
<returns>Element of the default</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.ActiveElement">
<summary>
Finds the active element on the page and returns it
</summary>
<returns>Element that is active</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTargetLocator.Alert">
<summary>
Switches to the currently active modal dialog for this particular driver instance.
</summary>
<returns>A handle to the dialog.</returns>
</member>
<member name="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTimeouts">
<summary>
Defines the interface through which the user can define timeouts.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTimeouts.#ctor(OpenQA.Selenium.IOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTimeouts"/> class
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.IOptions"/> object to wrap.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTimeouts.ImplicitlyWait(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait when searching for an
element if it is not immediately present.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan"/> structure defining the amount of time to wait.</param>
<returns>A self reference</returns>
<remarks>
When searching for a single element, the driver should poll the page
until the element has been found, or this timeout expires before throwing
a <see cref="T:OpenQA.Selenium.NoSuchElementException"/>. When searching for multiple elements,
the driver should poll the page until at least one element has been found
or this timeout has expired.
<para>
Increasing the implicit wait timeout should be used judiciously as it
will have an adverse effect on test run time, especially when used with
slower location strategies like XPath.
</para>
</remarks>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTimeouts.SetScriptTimeout(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait when executing JavaScript asynchronously.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan"/> structure defining the amount of time to wait.</param>
<returns>A self reference</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringTimeouts.SetPageLoadTimeout(System.TimeSpan)">
<summary>
Specifies the amount of time the driver should wait for a page to load when setting the <see cref="P:OpenQA.Selenium.IWebDriver.Url"/> property.
</summary>
<param name="timeToWait">A <see cref="T:System.TimeSpan"/> structure defining the amount of time to wait.</param>
<returns>A self reference</returns>
</member>
<member name="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement">
<summary>
EventFiringWebElement allows you to have access to specific items that are found on the page
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.#ctor(OpenQA.Selenium.Support.Events.EventFiringWebDriver,OpenQA.Selenium.IWebElement)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement"/> class.
</summary>
<param name="driver">The <see cref="T:OpenQA.Selenium.Support.Events.EventFiringWebDriver"/> instance hosting this element.</param>
<param name="element">The <see cref="T:OpenQA.Selenium.IWebElement"/> to wrap for event firing.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Clear">
<summary>
Method to clear the text out of an Input element
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.SendKeys(System.String)">
<summary>
Method for sending native key strokes to the browser
</summary>
<param name="text">String containing what you would like to type onto the screen</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Submit">
<summary>
If this current element is a form, or an element within a form, then this will be submitted to the remote server.
If this causes the current page to change, then this method will block until the new page is loaded.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Click">
<summary>
Click this element. If this causes a new page to load, this method will block until
the page has loaded. At this point, you should discard all references to this element
and any further operations performed on this element will have undefined behavior unless
you know that the element and the page will still be present. If this element is not
clickable, then this operation is a no-op since it's pretty common for someone to
accidentally miss the target when clicking in Real Life
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.GetAttribute(System.String)">
<summary>
If this current element is a form, or an element within a form, then this will be submitted to the remote server. If this causes the current page to change, then this method will block until the new page is loaded.
</summary>
<param name="attributeName">Attribute you wish to get details of</param>
<returns>The attribute's current value or null if the value is not set.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.GetCssValue(System.String)">
<summary>
Method to return the value of a CSS Property
</summary>
<param name="propertyName">CSS property key</param>
<returns>string value of the CSS property</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.FindElement(OpenQA.Selenium.By)">
<summary>
Finds the first element in the page that matches the <see cref="T:OpenQA.Selenium.By"/> object
</summary>
<param name="by">By mechanism to find the element</param>
<returns>IWebElement object so that you can interaction that object</returns>
</member>
<member name="M:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.FindElements(OpenQA.Selenium.By)">
<summary>
Finds the elements on the page by using the <see cref="T:OpenQA.Selenium.By"/> object and returns a ReadOnlyCollection of the Elements on the page
</summary>
<param name="by">By mechanism to find the element</param>
<returns>ReadOnlyCollection of IWebElement</returns>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.WrappedElement">
<summary>
Gets the underlying wrapped <see cref="T:OpenQA.Selenium.IWebElement"/>.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.TagName">
<summary>
Gets the DOM Tag of element
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Text">
<summary>
Gets the text from the element
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Enabled">
<summary>
Gets a value indicating whether an element is currently enabled
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Selected">
<summary>
Gets a value indicating whether this element is selected or not. This operation only applies to input elements such as checkboxes, options in a select and radio buttons.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Location">
<summary>
Gets the Location of an element and returns a Point object
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Size">
<summary>
Gets the <see cref="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Size"/> of the element on the page
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.Displayed">
<summary>
Gets a value indicating whether the element is currently being displayed
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.EventFiringWebDriver.EventFiringWebElement.ParentDriver">
<summary>
Gets the underlying EventFiringWebDriver for this element.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Events.FindElementEventArgs">
<summary>
Provides data for events related to finding elements.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.FindElementEventArgs.#ctor(OpenQA.Selenium.IWebDriver,OpenQA.Selenium.By)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.FindElementEventArgs"/> class.
</summary>
<param name="driver">The WebDriver instance used in finding elements.</param>
<param name="method">The <see cref="T:OpenQA.Selenium.By"/> object containing the method used to find elements</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.FindElementEventArgs.#ctor(OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebElement,OpenQA.Selenium.By)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.FindElementEventArgs"/> class.
</summary>
<param name="driver">The WebDriver instance used in finding elements.</param>
<param name="element">The parent element used as the context for the search.</param>
<param name="method">The <see cref="T:OpenQA.Selenium.By"/> object containing the method used to find elements.</param>
</member>
<member name="P:OpenQA.Selenium.Support.Events.FindElementEventArgs.Driver">
<summary>
Gets the WebDriver instance used in finding elements.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.FindElementEventArgs.Element">
<summary>
Gets the parent element used as the context for the search.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.FindElementEventArgs.FindMethod">
<summary>
Gets the <see cref="T:OpenQA.Selenium.By"/> object containing the method used to find elements.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Events.WebDriverExceptionEventArgs">
<summary>
Provides data for events relating to exception handling.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.WebDriverExceptionEventArgs.#ctor(OpenQA.Selenium.IWebDriver,System.Exception)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.WebDriverExceptionEventArgs"/> class.
</summary>
<param name="driver">The WebDriver instance throwing the exception.</param>
<param name="thrownException">The exception thrown by the driver.</param>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebDriverExceptionEventArgs.ThrownException">
<summary>
Gets the exception thrown by the driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebDriverExceptionEventArgs.Driver">
<summary>
Gets the WebDriver instance .
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs">
<summary>
Provides data for events relating to navigation.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs.#ctor(OpenQA.Selenium.IWebDriver)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> class.
</summary>
<param name="driver">The WebDriver instance used in navigation.</param>
</member>
<member name="M:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs.#ctor(OpenQA.Selenium.IWebDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs"/> class.
</summary>
<param name="driver">The WebDriver instance used in navigation.</param>
<param name="url">The URL navigated to by the driver.</param>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs.Url">
<summary>
Gets the URL navigated to by the driver.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebDriverNavigationEventArgs.Driver">
<summary>
Gets the WebDriver instance used in navigation.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs">
<summary>
Provides data for events relating to executing JavaScript.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs.#ctor(OpenQA.Selenium.IWebDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs"/> class.
</summary>
<param name="driver">The WebDriver instance used to execute the script.</param>
<param name="script">The script executed by the driver.</param>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs.Driver">
<summary>
Gets the WebDriver instance used to execute the script.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebDriverScriptEventArgs.Script">
<summary>
Gets the script executed by the driver.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Events.WebElementEventArgs">
<summary>
Provides data for events relating to elements.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Events.WebElementEventArgs.#ctor(OpenQA.Selenium.IWebDriver,OpenQA.Selenium.IWebElement)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.Events.WebElementEventArgs"/> class.
</summary>
<param name="driver">The WebDriver instance used for the action.</param>
<param name="element">The element used for the action.</param>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebElementEventArgs.Driver">
<summary>
Gets the WebDriver instance used for the action.
</summary>
</member>
<member name="P:OpenQA.Selenium.Support.Events.WebElementEventArgs.Element">
<summary>
Gets the element used for the action.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.Extensions.WebDriverExtensions">
<summary>
Provides extension methods for convenience in using WebDriver.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.Extensions.WebDriverExtensions.TakeScreenshot(OpenQA.Selenium.IWebDriver)">
<summary>
Gets a <see cref="T:OpenQA.Selenium.Screenshot"/> object representing the image of the page on the screen.
</summary>
<param name="driver">The driver instance to extend.</param>
<returns>A <see cref="T:OpenQA.Selenium.Screenshot"/> object containing the image.</returns>
<exception cref="T:OpenQA.Selenium.WebDriverException">Thrown if this <see cref="T:OpenQA.Selenium.IWebDriver"/> instance
does not implement <see cref="T:OpenQA.Selenium.ITakesScreenshot"/>, or the capabilities of the driver
indicate that it cannot take screenshots.</exception>
</member>
<member name="M:OpenQA.Selenium.Support.Extensions.WebDriverExtensions.ExecuteJavaScript``1(OpenQA.Selenium.IWebDriver,System.String,System.Object[])">
<summary>
Executes JavaScript in the context of the currently selected frame or window
</summary>
<typeparam name="T">Expected return type of the JavaScript execution.</typeparam>
<param name="driver">The driver instance to extend.</param>
<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>
<exception cref="T:OpenQA.Selenium.WebDriverException">Thrown if this <see cref="T:OpenQA.Selenium.IWebDriver"/> instance
does not implement <see cref="T:OpenQA.Selenium.IJavaScriptExecutor"/>, or if the actual return type
of the JavaScript execution does not match the expected type.</exception>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.ByAll">
<summary>
Mechanism used to locate elements within a document using a series of lookups. This class will
find all DOM elements that matches all of the locators in sequence, e.g.
</summary>
<example>
The following code will find all elements that match by1 and then all elements that also match by2.
<code>
driver.findElements(new ByAll(by1, by2))
</code>
This means that the list of elements returned may not be in document order.
</example>>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByAll.#ctor(OpenQA.Selenium.By[])">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.PageObjects.ByAll"/> class with one or more <see cref="T:OpenQA.Selenium.By"/> objects.
</summary>
<param name="bys">One or more <see cref="T:OpenQA.Selenium.By"/> references</param>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByAll.FindElement(OpenQA.Selenium.ISearchContext)">
<summary>
Find a single element.
</summary>
<param name="context">Context used to find the element.</param>
<returns>The element that matches</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByAll.FindElements(OpenQA.Selenium.ISearchContext)">
<summary>
Finds many elements
</summary>
<param name="context">Context used to find the element.</param>
<returns>A readonly collection of elements that match.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByAll.ToString">
<summary>
Writes out a comma separated list of the <see cref="T:OpenQA.Selenium.By"/> objects used in the chain.
</summary>
<returns>Converts the value of this instance to a <see cref="T:System.String"/></returns>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.ByChained">
<summary>
Mechanism used to locate elements within a document using a series of other lookups. This class
will find all DOM elements that matches each of the locators in sequence
</summary>
<example>
The following code will will find all elements that match by2 and appear under an element that matches
by1.
<code>
driver.findElements(new ByChained(by1, by2))
</code>
</example>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByChained.#ctor(OpenQA.Selenium.By[])">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.PageObjects.ByChained"/> class with one or more <see cref="T:OpenQA.Selenium.By"/> objects.
</summary>
<param name="bys">One or more <see cref="T:OpenQA.Selenium.By"/> references</param>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByChained.FindElement(OpenQA.Selenium.ISearchContext)">
<summary>
Find a single element.
</summary>
<param name="context">Context used to find the element.</param>
<returns>The element that matches</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByChained.FindElements(OpenQA.Selenium.ISearchContext)">
<summary>
Finds many elements
</summary>
<param name="context">Context used to find the element.</param>
<returns>A readonly collection of elements that match.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByChained.ToString">
<summary>
Writes out a comma separated list of the <see cref="T:OpenQA.Selenium.By"/> objects used in the chain.
</summary>
<returns>Converts the value of this instance to a <see cref="T:System.String"/></returns>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.ByFactory">
<summary>
Provides instances of the <see cref="T:OpenQA.Selenium.By"/> object to the attributes.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByFactory.From(OpenQA.Selenium.Support.PageObjects.FindsByAttribute)">
<summary>
Gets an instance of the <see cref="T:OpenQA.Selenium.By"/> class based on the specified attribute.
</summary>
<param name="attribute">The <see cref="T:OpenQA.Selenium.Support.PageObjects.FindsByAttribute"/> describing how to find the element.</param>
<returns>An instance of the <see cref="T:OpenQA.Selenium.By"/> class.</returns>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.ByIdOrName">
<summary>
Finds element when the id or the name attribute has the specified value.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByIdOrName.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.PageObjects.ByIdOrName"/> class.
</summary>
<param name="elementIdentifier">The ID or Name to use in finding the element.</param>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByIdOrName.FindElement(OpenQA.Selenium.ISearchContext)">
<summary>
Find a single element.
</summary>
<param name="context">Context used to find the element.</param>
<returns>The element that matches</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByIdOrName.FindElements(OpenQA.Selenium.ISearchContext)">
<summary>
Finds many elements
</summary>
<param name="context">Context used to find the element.</param>
<returns>A readonly collection of elements that match.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.ByIdOrName.ToString">
<summary>
Writes out a description of this By object.
</summary>
<returns>Converts the value of this instance to a <see cref="T:System.String"/></returns>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.CacheLookupAttribute">
<summary>
Marks the element so that lookups to the browser page are cached. This class cannot be inherited.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.DefaultElementLocator">
<summary>
A default locator for elements for use with the <see cref="T:OpenQA.Selenium.Support.PageObjects.PageFactory"/>. This locator
implements no retry logic for elements not being found, nor for elements being stale.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.IElementLocator">
<summary>
Interface describing how elements are to be located by a <see cref="T:OpenQA.Selenium.Support.PageObjects.PageFactory"/>.
</summary>
<remarks>
A locator must always contain a way to retrieve the <see cref="T:OpenQA.Selenium.ISearchContext"/> to
use in locating elements. In practice, this will usually be implemented by passing
the context in via a constructor.
</remarks>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.IElementLocator.LocateElement(System.Collections.Generic.IEnumerable{OpenQA.Selenium.By})">
<summary>
Locates an element using the given list of <see cref="T:OpenQA.Selenium.By"/> criteria.
</summary>
<param name="bys">The list of methods by which to search for the element.</param>
<returns>An <see cref="T:OpenQA.Selenium.IWebElement"/> which is the first match under the desired criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.IElementLocator.LocateElements(System.Collections.Generic.IEnumerable{OpenQA.Selenium.By})">
<summary>
Locates a list of elements using the given list of <see cref="T:OpenQA.Selenium.By"/> criteria.
</summary>
<param name="bys">The list of methods by which to search for the elements.</param>
<returns>A list of all elements which match the desired criteria.</returns>
</member>
<member name="P:OpenQA.Selenium.Support.PageObjects.IElementLocator.SearchContext">
<summary>
Gets the <see cref="T:OpenQA.Selenium.ISearchContext"/> to be used in locating elements.
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.DefaultElementLocator.#ctor(OpenQA.Selenium.ISearchContext)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Support.PageObjects.DefaultElementLocator"/> class.
</summary>
<param name="searchContext">The <see cref="T:OpenQA.Selenium.ISearchContext"/> used by this locator
to locate elements.</param>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.DefaultElementLocator.LocateElement(System.Collections.Generic.IEnumerable{OpenQA.Selenium.By})">
<summary>
Locates an element using the given list of <see cref="T:OpenQA.Selenium.By"/> criteria.
</summary>
<param name="bys">The list of methods by which to search for the element.</param>
<returns>An <see cref="T:OpenQA.Selenium.IWebElement"/> which is the first match under the desired criteria.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.DefaultElementLocator.LocateElements(System.Collections.Generic.IEnumerable{OpenQA.Selenium.By})">
<summary>
Locates a list of elements using the given list of <see cref="T:OpenQA.Selenium.By"/> criteria.
</summary>
<param name="bys">The list of methods by which to search for the elements.</param>
<returns>A list of all elements which match the desired criteria.</returns>
</member>
<member name="P:OpenQA.Selenium.Support.PageObjects.DefaultElementLocator.SearchContext">
<summary>
Gets the <see cref="T:OpenQA.Selenium.ISearchContext"/> to be used in locating elements.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.DefaultElementLocatorFactory">
<summary>
A default locator for elements for use with the <see cref="T:OpenQA.Selenium.Support.PageObjects.PageFactory"/>. This locator
implements no retry logic for elements not being found, nor for elements being stale.
</summary>
</member>
<member name="T:OpenQA.Selenium.Support.PageObjects.IElementLocatorFactory">
<summary>
Interface describing how elements are to be located by a <see cref="T:OpenQA.Selenium.Support.PageObjects.PageFactory"/>
</summary>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.IElementLocatorFactory.CreateLocator(OpenQA.Selenium.ISearchContext)">
<summary>
Creates an <see cref="T:OpenQA.Selenium.Support.PageObjects.IElementLocator"/> object used to locate elements.
</summary>
<param name="searchContext">The <see cref="T:OpenQA.Selenium.ISearchContext"/> object that the
locator uses for locating elements.</param>
<returns>The <see cref="T:OpenQA.Selenium.Support.PageObjects.IElementLocator"/> used to locate elements.</returns>
</member>
<member name="M:OpenQA.Selenium.Support.PageObjects.IElementLocatorFactory.LocateElement(OpenQA.Selenium.ISearchContext,System.Collections.Generic.IEnumerable{OpenQA.Selenium.By})">
<summary>
Locates an element using the given <see cref="T:OpenQA.Selenium.ISearchContext"/> and list of <see cref="T:OpenQA.Selenium.By"/> criteria.
</summary>
<param name="searchContext">The <see cref="T:OpenQA.Selenium.ISearchContext"/> object within which to search for an element.</param>
<param name="bys">The list of methods by which to search for the element.</param>