forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNamespaceDoc.cs
More file actions
39 lines (37 loc) · 917 Bytes
/
NamespaceDoc.cs
File metadata and controls
39 lines (37 loc) · 917 Bytes
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
using System.Runtime.CompilerServices;
namespace Selenium {
/// <summary>
/// These are the namespace comments.
/// </summary>
/// <example>
/// VBA:
/// <code lang="vbs">
/// Public Sub Script()
/// Dim driver As New FirefoxDriver
/// driver.Get "http://www.google.com"
/// ...
/// driver.Quit
/// End Sub
/// </code>
///
/// VBScript:
/// <code lang="vbs">
/// Class Script
/// Dim driver
///
/// Sub Class_Initialize
/// Set driver = CreateObject("Selenium.FirefoxDriver")
/// driver.Get "http://www.google.com"
/// End Sub
///
/// Sub Class_Terminate
/// driver.Quit
/// End Sub
/// End Class
///
/// Set s = New Script
/// </code>
/// </example>
[CompilerGeneratedAttribute()]
public class NamespaceDoc { }
}