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

Commit

Permalink
Code documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
tfreitasleal committed Oct 26, 2017
1 parent af2f5b6 commit 9a942ed
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions Source/Qooxdoo.WebDriver/Browser.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,43 @@
namespace Qooxdoo.WebDriver
{
/// <summary>
/// Supported browses enumeration used on <see cref="QxWebDriver"/> constructor.
/// </summary>
public enum Browser
{
/// <summary>
/// Chrome
/// </summary>
Chrome,

/// <summary>
/// Microsoft Edge
/// </summary>
Edge,

/// <summary>
/// Firefox
/// </summary>
Firefox,

/// <summary>
/// Internet Explorer
/// </summary>
IE,

/// <summary>
/// Opera
/// </summary>
Opera,

/// <summary>
/// Phantom JS
/// </summary>
PhantomJS,

/// <summary>
/// Safari
/// </summary>
Safari
}
}

0 comments on commit 9a942ed

Please sign in to comment.