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
13 changes: 8 additions & 5 deletions src/Appium.Net/Appium/Android/Enums/AndroidKeyCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//information regarding copyright ownership.
//You may obtain a copy of the License at
//
/// http://www.apache.org/licenses/LICENSE-2.0
// http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -13,6 +13,9 @@
//limitations under the License.
namespace OpenQA.Selenium.Appium.Android
{
/// <summary>
/// Some common key codes for Android Key Events.
/// </summary>
public sealed class AndroidKeyCode
{

Expand Down Expand Up @@ -452,7 +455,7 @@ public sealed class AndroidKeyCode
/// </summary>
public static readonly int KeycodeButton_THUMBR = 107;

/// </summary>
/// <summary>
/// Key code constant: X Button key. On a game controller, the X button should be either the button labeled X or the first button on the upper row of controller buttons.
/// (0x00000063)
/// </summary>
Expand Down Expand Up @@ -722,7 +725,7 @@ public sealed class AndroidKeyCode
/// </summary>
public static readonly int Keycode_F8 = 138;

/// </summary>
/// <summary>
/// Key code constant: F9 key.
/// (0x0000008b)
/// </summary>
Expand Down Expand Up @@ -1025,7 +1028,7 @@ public sealed class AndroidKeyCode
/// <summary>
/// Key code constant: Number modifier key. Used to enter numeric symbols. This key is not Num Lock; it is more like Keycode_ALT_LEFT and is public static readonly int erpreted as an ALT key by MetaKeyKeyListener.
/// (0x0000004e)
/// <summary>
/// </summary>
public static readonly int Keycode_NUM = 78;

/// <summary>
Expand Down Expand Up @@ -1145,7 +1148,7 @@ public sealed class AndroidKeyCode
/// <summary>
/// Key code constant: Numeric keypad '-' key (for subtraction).
/// (0x0000009c)
/// <summary>
/// </summary>
public static readonly int KeycodeNumpad_SUBTRACT = 156;

/// <summary>
Expand Down
5 changes: 4 additions & 1 deletion src/Appium.Net/Appium/Enums/MobileCapabilityType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@

namespace OpenQA.Selenium.Appium.Enums
{
/// <summary>
/// The list of common capabilities. Read: https://appium.github.io/appium/docs/en/2.0/guides/caps/
/// </summary>
public sealed class MobileCapabilityType
{
/// <summary>
Expand Down Expand Up @@ -56,7 +59,7 @@ public sealed class MobileCapabilityType
/// </summary>
public static readonly string AppiumVersion = "appium-version";

// <summary>
/// <summary>
/// Unique device identifier of the connected physical device
/// </summary>
public static readonly string Udid = "appium:udid";
Expand Down