File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ packages
15
15
.idea
16
16
.vs /
17
17
env.json
18
- .vscode /
18
+ .vscode /
19
+ * .user
Original file line number Diff line number Diff line change @@ -194,10 +194,10 @@ public IReadOnlyCollection<W> FindElementsByAccessibilityId(string selector) =>
194
194
195
195
#region IFindsByImage Members
196
196
197
- public W FindElementByImage ( string base64Template ) => FindElement ( MobileBy . Image ( base64Template ) ) ;
197
+ public W FindElementByImage ( string base64Template ) => FindElement ( MobileSelector . Image , base64Template ) ;
198
198
199
199
public IReadOnlyCollection < W > FindElementsByImage ( string base64Template ) =>
200
- ConvertToExtendedWebElementCollection < W > ( FindElements ( MobileBy . Image ( base64Template ) ) ) ;
200
+ ConvertToExtendedWebElementCollection < W > ( FindElements ( MobileSelector . Image , base64Template ) ) ;
201
201
202
202
#endregion
203
203
Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ public interface IFindsByImage<out W> : IFindsByFluentSelector<W> where W : IWeb
22
22
/// <summary>
23
23
/// Performs the lookup for a single element by matching its image template
24
24
/// to the current full screen shot. This type of locator requires OpenCV libraries
25
- /// and bindings for NodeJS to be installed on the server machine. ookup options
26
- /// fine-tuning might be done via <see cref="IHasSettings.SetSetting"/>. (Supported since Appium 1.8.2)
25
+ /// and bindings for NodeJS to be installed on the server machine.
26
+ /// Lookup options fine-tuning might be done via <see cref="IHasSettings.SetSetting"/>. (Supported since Appium 1.8.2)
27
27
/// </summary>
28
28
/// <param name="base64Template">base64-encoded template image string.
29
29
/// Supported image formats are the same as for OpenCV library.
@@ -36,8 +36,8 @@ public interface IFindsByImage<out W> : IFindsByFluentSelector<W> where W : IWeb
36
36
/// <summary>
37
37
/// Performs the lookup for a list of elements by matching its image template
38
38
/// to the current full screen shot. This type of locator requires OpenCV libraries
39
- /// and bindings for NodeJS to be installed on the server machine. ookup options
40
- /// fine-tuning might be done via <see cref="IHasSettings.SetSetting"/>. (Supported since Appium 1.8.2)
39
+ /// and bindings for NodeJS to be installed on the server machine.
40
+ /// Lookup options fine-tuning might be done via <see cref="IHasSettings.SetSetting"/>. (Supported since Appium 1.8.2)
41
41
/// </summary>
42
42
/// <param name="base64Template">base64-encoded template image string.
43
43
/// Supported image formats are the same as for OpenCV library.
You can’t perform that action at this time.
0 commit comments