forked from arviedelgado/roro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebDriver.xml
11857 lines (11853 loc) · 639 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" encoding="utf-8"?>
<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="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="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.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.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="T:OpenQA.Selenium.Chrome.ChromeDriver">
<summary>
Provides a mechanism to write tests against Chrome
</summary>
<example>
<code>
[TestFixture]
public class Testing
{
private IWebDriver driver;
<para />
[SetUp]
public void SetUp()
{
driver = new ChromeDriver();
}
<para />
[Test]
public void TestGoogle()
{
driver.Navigate().GoToUrl("http://www.google.co.uk");
/*
* Rest of the test
*/
}
<para />
[TearDown]
public void TearDown()
{
driver.Quit();
}
}
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.Chrome.ChromeDriver.AcceptUntrustedCertificates">
<summary>
Accept untrusted SSL Certificates
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified options.
</summary>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified driver service.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified path
to the directory containing ChromeDriver.exe.
</summary>
<param name="chromeDriverDirectory">The full path to the directory containing ChromeDriver.exe.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(System.String,OpenQA.Selenium.Chrome.ChromeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified path
to the directory containing ChromeDriver.exe and options.
</summary>
<param name="chromeDriverDirectory">The full path to the directory containing ChromeDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(System.String,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified path
to the directory containing ChromeDriver.exe, options, and command timeout.
</summary>
<param name="chromeDriverDirectory">The full path to the directory containing ChromeDriver.exe.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.Chrome.ChromeOptions)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified
<see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> and options.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> used to initialize the driver.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriver.#ctor(OpenQA.Selenium.Chrome.ChromeDriverService,OpenQA.Selenium.Chrome.ChromeOptions,System.TimeSpan)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /> class using the specified <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" />.
</summary>
<param name="service">The <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> to use.</param>
<param name="options">The <see cref="T:OpenQA.Selenium.Chrome.ChromeOptions" /> to be used with the Chrome driver.</param>
<param name="commandTimeout">The maximum amount of time to wait for each command.</param>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriver.FileDetector">
<summary>
Gets or sets the <see cref="T:OpenQA.Selenium.IFileDetector" /> responsible for detecting
sequences of keystrokes representing file paths and names.
</summary>
<remarks>The Chrome driver does not allow a file detector to be set,
as the server component of the Chrome driver (ChromeDriver.exe) only
allows uploads from the local computer environment. Attempting to set
this property has no effect, but does not throw an exception. If you
are attempting to run the Chrome driver remotely, use <see cref="T:OpenQA.Selenium.Remote.RemoteWebDriver" />
in conjunction with a standalone WebDriver server.</remarks>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeDriverService">
<summary>
Exposes the service provided by the native ChromeDriver executable.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.#ctor(System.String,System.String,System.Int32)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeDriverService" /> class.
</summary>
<param name="executablePath">The full path to the ChromeDriver executable.</param>
<param name="executableFileName">The file name of the ChromeDriver executable.</param>
<param name="port">The port on which the ChromeDriver executable should listen.</param>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.LogPath">
<summary>
Gets or sets the location of the log file written to by the ChromeDriver executable.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.UrlPathPrefix">
<summary>
Gets or sets the base URL path prefix for commands (e.g., "wd/url").
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.PortServerAddress">
<summary>
Gets or sets the address of a server to contact for reserving a port.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.AndroidDebugBridgePort">
<summary>
Gets or sets the port on which the Android Debug Bridge is listening for commands.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.EnableVerboseLogging">
<summary>
Gets or sets a value indicating whether to enable verbose logging for the ChromeDriver executable.
Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.WhitelistedIPAddresses">
<summary>
Gets or sets the comma-delimited list of IP addresses that are approved to
connect to this instance of the Chrome driver. Defaults to an empty string,
which means only the local loopback address can connect.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeDriverService.CommandLineArguments">
<summary>
Gets the command-line arguments for the driver service.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.CreateDefaultService">
<summary>
Creates a default instance of the ChromeDriverService.
</summary>
<returns>A ChromeDriverService that implements default settings.</returns>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.CreateDefaultService(System.String)">
<summary>
Creates a default instance of the ChromeDriverService using a specified path to the ChromeDriver executable.
</summary>
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
<returns>A ChromeDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.CreateDefaultService(System.String,System.String)">
<summary>
Creates a default instance of the ChromeDriverService using a specified path to the ChromeDriver executable with the given name.
</summary>
<param name="driverPath">The directory containing the ChromeDriver executable.</param>
<param name="driverExecutableFileName">The name of the ChromeDriver executable file.</param>
<returns>A ChromeDriverService using a random port.</returns>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeDriverService.ChromeDriverServiceFileName">
<summary>
Returns the Chrome driver filename for the currently running platform
</summary>
<returns>The file name of the Chrome driver service executable.</returns>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings">
<summary>
Represents the type-safe options for setting settings for emulating a
mobile device in the Chrome browser.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.#ctor">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings" /> class.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings" /> class.
</summary>
<param name="userAgent">The user agent string to be used by the browser when emulating
a mobile device.</param>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.UserAgent">
<summary>
Gets or sets the user agent string to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.Width">
<summary>
Gets or sets the width in pixels to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.Height">
<summary>
Gets or sets the height in pixels to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.PixelRatio">
<summary>
Gets or sets the pixel ratio to be used by the browser when emulating
a mobile device.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings.EnableTouchEvents">
<summary>
Gets or sets a value indicating whether touch events should be enabled by
the browser when emulating a mobile device. Defaults to <see langword="true" />.
</summary>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeOptions">
<summary>
Class to manage options specific to <see cref="T:OpenQA.Selenium.Chrome.ChromeDriver" /></summary>
<remarks>
Used with ChromeDriver.exe v17.0.963.0 and higher.
</remarks>
<example>
<code>
ChromeOptions options = new ChromeOptions();
options.AddExtensions("\path\to\extension.crx");
options.BinaryLocation = "\path\to\chrome";
</code>
<para />
<para>For use with ChromeDriver:</para>
<para />
<code>
ChromeDriver driver = new ChromeDriver(options);
</code>
<para />
<para>For use with RemoteWebDriver:</para>
<para />
<code>
RemoteWebDriver driver = new RemoteWebDriver(new Uri("http://localhost:4444/wd/hub"), options.ToCapabilities());
</code>
</example>
</member>
<member name="F:OpenQA.Selenium.Chrome.ChromeOptions.Capability">
<summary>
Gets the name of the capability used to store Chrome options in
a <see cref="T:OpenQA.Selenium.Remote.DesiredCapabilities" /> object.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.BinaryLocation">
<summary>
Gets or sets the location of the Chrome browser's binary executable file.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.LeaveBrowserRunning">
<summary>
Gets or sets a value indicating whether Chrome should be left running after the
ChromeDriver instance is exited. Defaults to <see langword="false" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.Proxy">
<summary>
Gets or sets the proxy to use with this instance of Chrome.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.Arguments">
<summary>
Gets the list of arguments appended to the Chrome command line as a string array.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.Extensions">
<summary>
Gets the list of extensions to be installed as an array of base64-encoded strings.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.DebuggerAddress">
<summary>
Gets or sets the address of a Chrome debugger server to connect to.
Should be of the form "{hostname|IP address}:port".
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.MinidumpPath">
<summary>
Gets or sets the directory in which to store minidump files.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromeOptions.PerformanceLoggingPreferences">
<summary>
Gets or sets the performance logging preferences for the driver.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddArgument(System.String)">
<summary>
Adds a single argument to the list of arguments to be appended to the Chrome.exe command line.
</summary>
<param name="argument">The argument to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddArguments(System.String[])">
<summary>
Adds arguments to be appended to the Chrome.exe command line.
</summary>
<param name="argumentsToAdd">An array of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds arguments to be appended to the Chrome.exe command line.
</summary>
<param name="argumentsToAdd">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of arguments to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExcludedArgument(System.String)">
<summary>
Adds a single argument to be excluded from the list of arguments passed by default
to the Chrome.exe command line by chromedriver.exe.
</summary>
<param name="argument">The argument to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExcludedArguments(System.String[])">
<summary>
Adds arguments to be excluded from the list of arguments passed by default
to the Chrome.exe command line by chromedriver.exe.
</summary>
<param name="argumentsToExclude">An array of arguments to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExcludedArguments(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds arguments to be excluded from the list of arguments passed by default
to the Chrome.exe command line by chromedriver.exe.
</summary>
<param name="argumentsToExclude">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of arguments to exclude.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExtension(System.String)">
<summary>
Adds a path to a packed Chrome extension (.crx file) to the list of extensions
to be installed in the instance of Chrome.
</summary>
<param name="pathToExtension">The full path to the extension to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExtensions(System.String[])">
<summary>
Adds a list of paths to packed Chrome extensions (.crx files) to be installed
in the instance of Chrome.
</summary>
<param name="extensions">An array of full paths to the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddExtensions(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of paths to packed Chrome extensions (.crx files) to be installed
in the instance of Chrome.
</summary>
<param name="extensions">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of full paths to the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddEncodedExtension(System.String)">
<summary>
Adds a base64-encoded string representing a Chrome extension to the list of extensions
to be installed in the instance of Chrome.
</summary>
<param name="extension">A base64-encoded string representing the extension to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddEncodedExtensions(System.String[])">
<summary>
Adds a list of base64-encoded strings representing Chrome extensions to the list of extensions
to be installed in the instance of Chrome.
</summary>
<param name="extensions">An array of base64-encoded strings representing the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddEncodedExtensions(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of base64-encoded strings representing Chrome extensions to be installed
in the instance of Chrome.
</summary>
<param name="extensions">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of base64-encoded strings
representing the extensions to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddUserProfilePreference(System.String,System.Object)">
<summary>
Adds a preference for the user-specific profile or "user data directory."
If the specified preference already exists, it will be overwritten.
</summary>
<param name="preferenceName">The name of the preference to set.</param>
<param name="preferenceValue">The value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddLocalStatePreference(System.String,System.Object)">
<summary>
Adds a preference for the local state file in the user's data directory for Chrome.
If the specified preference already exists, it will be overwritten.
</summary>
<param name="preferenceName">The name of the preference to set.</param>
<param name="preferenceValue">The value of the preference to set.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.EnableMobileEmulation(System.String)">
<summary>
Allows the Chrome browser to emulate a mobile device.
</summary>
<param name="deviceName">The name of the device to emulate. The device name must be a
valid device name from the Chrome DevTools Emulation panel.</param>
<remarks>Specifying an invalid device name will not throw an exeption, but
will generate an error in Chrome when the driver starts. To unset mobile
emulation, call this method with <see langword="null" /> as the argument.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.EnableMobileEmulation(OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings)">
<summary>
Allows the Chrome browser to emulate a mobile device.
</summary>
<param name="deviceSettings">The <see cref="T:OpenQA.Selenium.Chrome.ChromeMobileEmulationDeviceSettings" />
object containing the settings of the device to emulate.</param>
<exception cref="T:System.ArgumentException">Thrown if the device settings option does
not have a user agent string set.</exception>
<remarks>Specifying an invalid device name will not throw an exeption, but
will generate an error in Chrome when the driver starts. To unset mobile
emulation, call this method with <see langword="null" /> as the argument.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddWindowType(System.String)">
<summary>
Adds a type of window that will be listed in the list of window handles
returned by the Chrome driver.
</summary>
<param name="windowType">The name of the window type to add.</param>
<remarks>This method can be used to allow the driver to access {webview}
elements by adding "webview" as a window type.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddWindowTypes(System.String[])">
<summary>
Adds a list of window types that will be listed in the list of window handles
returned by the Chrome driver.
</summary>
<param name="windowTypesToAdd">An array of window types to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddWindowTypes(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds a list of window types that will be listed in the list of window handles
returned by the Chrome driver.
</summary>
<param name="windowTypesToAdd">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> of window types to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Chrome driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" />.
Also, by default, calling this method adds capabilities to the options object passed to
chromedriver.exe.</remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the Chrome driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<param name="isGlobalCapability">Indicates whether the capability is to be set as a global
capability for the driver instead of a Chrome-specific option.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.Chrome.ChromeOptions.AddAdditionalCapability(System.String,System.Object,System.Boolean)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" /></remarks>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for Chrome with these options included as
capabilities. This does not copy the options. Further changes will be
reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for Chrome with these options.</returns>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences">
<summary>
Represents the type-safe options for setting preferences for performance
logging in the Chrome browser.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.IsCollectingNetworkEvents">
<summary>
Gets or sets a value indicating whether Chrome will collect events from the Network domain.
Defaults to <see langword="true" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.IsCollectingPageEvents">
<summary>
Gets or sets a value indicating whether Chrome will collect events from the Page domain.
Defaults to <see langword="true" />.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.IsCollectingTimelineEvents">
<summary>
Gets or sets a value indicating whether Chrome will collect events from the Timeline domain.
Defaults to <see langword="true" />, but is set to <see langword="false" /> when tracing
is enabled by adding one or more tracing categories.
</summary>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.BufferUsageReportingInterval">
<summary>
Gets or sets the interval between Chrome DevTools trace buffer usage events.
Defaults to 1000 milliseconds.
</summary>
<exception cref="T:System.ArgumentException">Thrown when an attempt is made to set
the value to a time span of less tnan or equal to zero milliseconds.</exception>
</member>
<member name="P:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.TracingCategories">
<summary>
Gets a comma-separated list of the categories for which tracing is enabled.
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.AddTracingCategory(System.String)">
<summary>
Adds a single category to the list of Chrome tracing categories for which events should be collected.
</summary>
<param name="category">The category to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.AddTracingCategories(System.String[])">
<summary>
Adds categories to the list of Chrome tracing categories for which events should be collected.
</summary>
<param name="categoriesToAdd">An array of categories to add.</param>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromePerformanceLoggingPreferences.AddTracingCategories(System.Collections.Generic.IEnumerable{System.String})">
<summary>
Adds categories to the list of Chrome tracing categories for which events should be collected.
</summary>
<param name="categoriesToAdd">An <see cref="T:System.Collections.Generic.IEnumerable`1" /> object of categories to add.</param>
</member>
<member name="T:OpenQA.Selenium.Chrome.ChromeWebElement">
<summary>
Provides a mechanism to get elements off the page for test
</summary>
</member>
<member name="M:OpenQA.Selenium.Chrome.ChromeWebElement.#ctor(OpenQA.Selenium.Chrome.ChromeDriver,System.String)">
<summary>
Initializes a new instance of the <see cref="T:OpenQA.Selenium.Chrome.ChromeWebElement" /> class.
</summary>
<param name="parent">Driver in use</param>
<param name="elementId">Id of the element</param>
</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="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.IsHttpOnly">
<summary>
Gets a value indicating whether the cookie is an HTTP-only cookie.
</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="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="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.DriverOptions">
<summary>
Base class for managing options specific to a browser driver.
</summary>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.AddAdditionalCapability(System.String,System.Object)">
<summary>
Provides a means to add additional capabilities not yet added as type safe options
for the specific browser driver.
</summary>
<param name="capabilityName">The name of the capability to add.</param>
<param name="capabilityValue">The value of the capability to add.</param>
<exception cref="T:System.ArgumentException">
thrown when attempting to add a capability for which there is already a type safe option, or
when <paramref name="capabilityName" /> is <see langword="null" /> or the empty string.
</exception>
<remarks>Calling <see cref="M:OpenQA.Selenium.DriverOptions.AddAdditionalCapability(System.String,System.Object)" />
where <paramref name="capabilityName" /> has already been added will overwrite the
existing value with the new value in <paramref name="capabilityValue" />.
</remarks>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.ToCapabilities">
<summary>
Returns DesiredCapabilities for the specific browser driver with these
options included ascapabilities. This does not copy the options. Further
changes will be reflected in the returned capabilities.
</summary>
<returns>The DesiredCapabilities for browser driver with these options.</returns>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.SetLoggingPreference(System.String,OpenQA.Selenium.LogLevel)">
<summary>
Sets the logging preferences for this driver.
</summary>
<param name="logType">The type of log for which to set the preference.
Known log types can be found in the <see cref="T:OpenQA.Selenium.LogType" /> class.</param>
<param name="logLevel">The <see cref="T:OpenQA.Selenium.LogLevel" /> value to which to set the log level.</param>
</member>
<member name="M:OpenQA.Selenium.DriverOptions.GenerateLoggingPreferencesDictionary">
<summary>
Generates the logging preferences dictionary for transmission as a desired capability.
</summary>
<returns>The dictionary containing the logging preferences.</returns>
</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 <see cref="T:OpenQA.Selenium.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="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="P:OpenQA.Selenium.DriverService.InitializationTimeout">
<summary>
Gets a value indicating the time to wait for an initial connection before timing out.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.TerminationTimeout">
<summary>
Gets a value indicating the time to wait for the service to terminate before forcing it to terminate.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.HasShutdown">
<summary>
Gets a value indicating whether the service has a shutdown API that can be called to terminate
it gracefully before forcing a termination.
</summary>
</member>
<member name="P:OpenQA.Selenium.DriverService.IsInitialized">
<summary>
Gets a value indicating whether the service is responding to HTTP requests.
</summary>
</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>