File tree 5 files changed +8
-10
lines changed
5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public interface IPushesFiles : IInteractsWithFiles
24
24
/// </summary>
25
25
/// <param name="pathOnDevice">Path to file to write data to on remote device</param>
26
26
/// <param name="stringData">A string to write to remote device</param>
27
- void PushFile ( string pathOnDevice , string base64Data ) ;
27
+ void PushFile ( string pathOnDevice , string stringData ) ;
28
28
29
29
/// <summary>
30
30
/// Saves base64 encoded data as a file on the remote mobile device.
@@ -37,7 +37,7 @@ public interface IPushesFiles : IInteractsWithFiles
37
37
/// Saves given file as a file on the remote mobile device.
38
38
/// </summary>
39
39
/// <param name="pathOnDevice">Path to file to write data to on remote device</param>
40
- /// <param name="base64Data ">A file to write to remote device</param>
40
+ /// <param name="file ">A file to write to remote device</param>
41
41
void PushFile ( string pathOnDevice , FileInfo file ) ;
42
42
}
43
43
}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public interface IFindsByFluentSelector<out W> where W : IWebElement
31
31
/// Method performs the searching for a list of elements by some selector defined by string
32
32
/// and value of the given selector
33
33
/// </summary>
34
- /// <param name="by ">is a string selector</param>
34
+ /// <param name="selector ">is a string selector</param>
35
35
/// <param name="value">is a value of the given selector</param>
36
36
/// <returns>a list of elements</returns>
37
37
IReadOnlyCollection < W > FindElements ( string selector , string value ) ;
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public interface IInteractsWithApps : IExecuteMethod
28
28
/// <summary>
29
29
/// Checks If an App Is Installed.
30
30
/// </summary>
31
- /// <param name="appPath ">a string containing the bundle id.</param>
31
+ /// <param name="bundleId ">a string containing the bundle id.</param>
32
32
/// <return>a boolean indicating if the app is installed.</return>
33
33
bool IsAppInstalled ( string bundleId ) ;
34
34
@@ -46,13 +46,13 @@ public interface IInteractsWithApps : IExecuteMethod
46
46
/// <summary>
47
47
/// Removes an App.
48
48
/// </summary>
49
- /// <param name="appPath ">a string containing the id of the app.</param>
49
+ /// <param name="appId ">a string containing the id of the app.</param>
50
50
void RemoveApp ( string appId ) ;
51
51
52
52
/// <summary>
53
53
/// Activates the given app by moving to the foreground if it is running in the background or starting it if it is not running yet.
54
54
/// </summary>
55
- /// <param name="appPath ">a string containing the id of the app.</param>
55
+ /// <param name="appId ">a string containing the id of the app.</param>
56
56
void ActivateApp ( string appId ) ;
57
57
58
58
/// <summary>
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ public interface INetworkActions
28
28
/// Switch the state of data service (Emulator Only)
29
29
/// (For Android) This API does not work for Android API level 21+
30
30
/// because it requires system or carrier privileged permission,
31
- /// and Android < = 21 does not support granting permissions.
31
+ /// and Android < = 21 does not support granting permissions.
32
32
/// </summary>
33
33
void ToggleData ( ) ;
34
34
@@ -59,7 +59,6 @@ public interface INetworkActions
59
59
/// <summary>
60
60
/// Sets GSM signal strength (Emulator only)
61
61
/// </summary>
62
- /// <param name=""></param>
63
62
/// <param name="gsmSignalStrength"></param>
64
63
void SetGsmSignalStrength ( GsmSignalStrength gsmSignalStrength ) ;
65
64
Original file line number Diff line number Diff line change @@ -25,12 +25,11 @@ public interface ITouchAction
25
25
/// <param name="x">The x coordinate relative to the element.</param>
26
26
/// <param name="y">The y coordinate relative to the element.</param>
27
27
/// <returns>A self-reference to this <see cref="ITouchAction"/>.</returns>
28
- ITouchAction LongPress ( IWebElement el , double ? x = null , double ? y = null ) ;
28
+ ITouchAction LongPress ( IWebElement element , double ? x = null , double ? y = null ) ;
29
29
30
30
/// <summary>
31
31
/// Press at the specified location until the context menu appears.
32
32
/// </summary>
33
- /// <param name="element">The target element.</param>
34
33
/// <param name="x">The x coordinate relative to the element.</param>
35
34
/// <param name="y">The y coordinate relative to the element.</param>
36
35
/// <returns>A self-reference to this <see cref="ITouchAction"/>.</returns>
You can’t perform that action at this time.
0 commit comments