forked from florentbr/SeleniumBasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_Verify.cs
More file actions
35 lines (24 loc) · 1.53 KB
/
_Verify.cs
File metadata and controls
35 lines (24 loc) · 1.53 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
using System;
using System.ComponentModel;
using System.Runtime.InteropServices;
namespace Selenium.ComInterfaces {
#pragma warning disable 1591
[Guid("0277FC34-FD1B-4616-BB19-495CC9DBFB96")]
[ComVisible(true), InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface _Verify {
[DispId(564), Description("Returns <OK> if the value is true, <KO, ...> otherwise.")]
string True(bool value, string failmessage = null);
[DispId(567), Description("Returns <OK> if the value is false, <KO, ...> otherwise.")]
string False(bool value, string failmessage = null);
[DispId(574), Description("Returns <OK> if the objects are equal, <KO, ...> otherwise.")]
string Equals(object expected, object input, string failmessage = null);
[DispId(579), Description("Returns <OK> if the objects are not equal, <KO, ...> otherwise.")]
string NotEquals(object expected, object input, string failmessage = null);
[DispId(583), Description("Returns <OK> if the text matches the pattern, <KO, ...> otherwise.")]
string Matches(string pattern, string input, string failmessage = null);
[DispId(587), Description("Returns <OK> if the text does not match the pattern, <KO, ...> otherwise.")]
string NotMatches(string pattern, string input, string failmessage = null);
[DispId(589), Description("Returns <OK> if the text contains the value, <KO, ...> otherwise.")]
string Contains(string value, string input, string failmessage = null);
}
}