Skip to content
This repository was archived by the owner on May 7, 2018. It is now read-only.

Commit 9a942ed

Browse files
author
tfreitasleal
committed
Code documentation.
1 parent af2f5b6 commit 9a942ed

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

Source/Qooxdoo.WebDriver/Browser.cs

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,43 @@
11
namespace Qooxdoo.WebDriver
22
{
3+
/// <summary>
4+
/// Supported browses enumeration used on <see cref="QxWebDriver"/> constructor.
5+
/// </summary>
36
public enum Browser
47
{
8+
/// <summary>
9+
/// Chrome
10+
/// </summary>
511
Chrome,
12+
13+
/// <summary>
14+
/// Microsoft Edge
15+
/// </summary>
616
Edge,
17+
18+
/// <summary>
19+
/// Firefox
20+
/// </summary>
721
Firefox,
22+
23+
/// <summary>
24+
/// Internet Explorer
25+
/// </summary>
826
IE,
27+
28+
/// <summary>
29+
/// Opera
30+
/// </summary>
931
Opera,
32+
33+
/// <summary>
34+
/// Phantom JS
35+
/// </summary>
1036
PhantomJS,
37+
38+
/// <summary>
39+
/// Safari
40+
/// </summary>
1141
Safari
1242
}
1343
}

0 commit comments

Comments
 (0)