-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBrowser.cs
More file actions
55 lines (46 loc) · 1.39 KB
/
Browser.cs
File metadata and controls
55 lines (46 loc) · 1.39 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ScriptCs.FluentAutomation
{
public enum Browser
{
/// <summary>
/// Internet Explorer. Before using, make sure to set ProtectedMode settings to be the same for all zones.
/// </summary>
InternetExplorer = 1,
/// <summary>
/// Internet Explorer (64-bit). Before using, make sure to set ProtectedMode settings to be the same for all zones.
/// </summary>
InternetExplorer64 = 2,
/// <summary>
/// Mozilla Firefox
/// </summary>
Firefox = 3,
/// <summary>
/// Google Chrome
/// </summary>
Chrome = 4,
/// <summary>
/// PhantomJS - Experimental - Headless browser - Support is Experimental
/// </summary>
PhantomJs = 5,
/// <summary>
/// Safari - Experimental - Only usable with a Remote URI
/// </summary>
Safari = 6,
/// <summary>
/// iPad - Experimental - Only usable with a Remote URI
/// </summary>
iPad = 7,
/// <summary>
/// iPhone - Experimental - Only usable with a Remote URI
/// </summary>
iPhone = 8,
/// <summary>
/// Android - Experimental - Only usable with a Remote URI
/// </summary>
Android = 9
}
}