forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Logs.cs
More file actions
32 lines (22 loc) · 862 Bytes
/
_Logs.cs
File metadata and controls
32 lines (22 loc) · 862 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
using Selenium;
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace Selenium.ComInterfaces {
#pragma warning disable 1591
//TODO : Include logs
[Guid("0277FC34-FD1B-4616-BB19-F5671F493AAE")]
[ComVisible(false), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface _Logs {
[DispId(47), Description("Get the log entries for the browser")]
List Browser { get; }
[DispId(49), Description("Get the log entries for the client")]
List Client { get; }
[DispId(51), Description("Get the log entries for the driver")]
List Driver { get; }
[DispId(53), Description("Get the log entries for the server")]
List Server { get; }
[DispId(55), Description("Get available log types.")]
List Types { get; }
}
}