Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/Appium.Net/Appium/AppiumCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -265,11 +265,10 @@ internal static ICommandExecutor Merge(ICommandExecutor repo)

/// <summary>
/// Constructor
/// </summary>
/// <param name="commandType">type of command (get/post/delete)</param>
/// <param name="command">Command</param>
/// <param name="apiEndpoint">api endpoint</param>
/// <summary>
/// </summary>
public AppiumCommand(string commandType, string command, string apiEndpoint)
{
CommandType = commandType;
Expand Down
7 changes: 5 additions & 2 deletions src/Appium.Net/Appium/Interfaces/IHidesKeyboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@

namespace OpenQA.Selenium.Appium.Interfaces
{
/// <summary>
/// Represents an interface for interacting with device keyboards.
/// </summary>
public interface IHidesKeyboard
{
/// <summary>
Expand All @@ -37,9 +40,9 @@ public interface IHidesKeyboard
void HideKeyboard(string strategy, string key);

/// <summary>
/// Whether or not the soft keyboard is shown
/// Determines whether the soft keyboard is currently shown.
/// </summary>
/// <returns><see cref="true"/> if keyboard is shown, <see cref="false"/> if not.</returns>
/// <returns>True if the keyboard is shown; otherwise, false.</returns>
bool IsKeyboardShown();
}
}
3 changes: 3 additions & 0 deletions src/Appium.Net/Appium/Interfaces/IHidesKeyboardWithKeyName.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@

namespace OpenQA.Selenium.Appium.Interfaces
{
/// <summary>
/// Represents an interface for hiding the keyboard with a specific key name.
/// </summary>
public interface IHidesKeyboardWithKeyName : IHidesKeyboard
{
/// <summary>
Expand Down