diff --git a/Source/Qooxdoo.WebDriver/Browser.cs b/Source/Qooxdoo.WebDriver/Browser.cs
index a50c507..a20d1e8 100644
--- a/Source/Qooxdoo.WebDriver/Browser.cs
+++ b/Source/Qooxdoo.WebDriver/Browser.cs
@@ -1,13 +1,43 @@
namespace Qooxdoo.WebDriver
{
+ ///
+ /// Supported browses enumeration used on constructor.
+ ///
public enum Browser
{
+ ///
+ /// Chrome
+ ///
Chrome,
+
+ ///
+ /// Microsoft Edge
+ ///
Edge,
+
+ ///
+ /// Firefox
+ ///
Firefox,
+
+ ///
+ /// Internet Explorer
+ ///
IE,
+
+ ///
+ /// Opera
+ ///
Opera,
+
+ ///
+ /// Phantom JS
+ ///
PhantomJS,
+
+ ///
+ /// Safari
+ ///
Safari
}
}
\ No newline at end of file