@@ -119,6 +119,7 @@ public DefaultSelenium(String serverHost, int serverPort, String browserString,
119
119
/// <summary>
120
120
/// Uses an arbitrary CommandProcessor
121
121
/// </summary>
122
+ /// <param name="processor">An ICommandProcessor to be used.</param>
122
123
public DefaultSelenium ( ICommandProcessor processor )
123
124
{
124
125
this . commandProcessor = processor ;
@@ -135,6 +136,7 @@ public ICommandProcessor Processor
135
136
/// <summary>
136
137
/// Sets the extension Javascript for the session
137
138
/// </summary>
139
+ /// <param name="extensionJs">The extention JavaScript to use.</param>
138
140
public void SetExtensionJs ( string extensionJs )
139
141
{
140
142
commandProcessor . SetExtensionJs ( extensionJs ) ;
@@ -149,9 +151,9 @@ public void Start()
149
151
}
150
152
151
153
/// <summary>
152
- ///
154
+ /// Starts a new Selenium testing session
153
155
/// </summary>
154
- /// <param name="optionsString"></param>
156
+ /// <param name="optionsString">The options to use for the session. </param>
155
157
public void Start ( string optionsString )
156
158
{
157
159
commandProcessor . Start ( optionsString ) ;
@@ -1798,8 +1800,8 @@ public String CaptureScreenshotToString()
1798
1800
/// <summary>
1799
1801
/// Captures the Network Traffic that is passing through Selenium Server
1800
1802
/// </summary>
1801
- /// <param name="type"></param>
1802
- /// <returns></returns>
1803
+ /// <param name="type">Type of traffic to capture </param>
1804
+ /// <returns>The traffic passing through the Selenium Server. </returns>
1803
1805
public string CaptureNetworkTraffic ( string type )
1804
1806
{
1805
1807
return commandProcessor . GetString ( "captureNetworkTraffic" , new string [ ] { type } ) ;
0 commit comments