Skip to content

Commit e8c6d92

Browse files
authored
chore: Remove Rotate endpoint (#756)
* test: Add RotationTest * chore: Remove casting * chore: Remove appium/device/rotate endpoint * chore: Remove Rotate methods from AppiumDriver and AppiumElement
1 parent 23ae815 commit e8c6d92

File tree

5 files changed

+10
-67
lines changed

5 files changed

+10
-67
lines changed

src/Appium.Net/Appium/AppiumCommand.cs

-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ public class AppiumCommand
8888
"/session/{sessionId}/appium/device/press_keycode"),
8989
new AppiumCommand(HttpCommandInfo.PostCommand, AppiumDriverCommand.LongPressKeyCode,
9090
"/session/{sessionId}/appium/device/long_press_keycode"),
91-
new AppiumCommand(HttpCommandInfo.PostCommand, AppiumDriverCommand.Rotate,
92-
"/session/{sessionId}/appium/device/rotate"),
9391
new AppiumCommand(HttpCommandInfo.GetCommand, AppiumDriverCommand.GetCurrentActivity,
9492
"/session/{sessionId}/appium/device/current_activity"),
9593
new AppiumCommand(HttpCommandInfo.GetCommand, AppiumDriverCommand.GetCurrentPackage,

src/Appium.Net/Appium/AppiumDriver.cs

-27
Original file line numberDiff line numberDiff line change
@@ -135,33 +135,6 @@ Response IExecuteMethod.Execute(string commandName, Dictionary<string, object> p
135135

136136
#region MJsonMethod Members
137137

138-
/// <summary>
139-
/// Rotates the device.
140-
/// </summary>
141-
/// <param name="opts">
142-
/// Rotations options like the following:
143-
/// <example>
144-
/// new Dictionary&lt;string, int&gt; {
145-
/// {"x", 114},
146-
/// {"y", 198},
147-
/// {"duration", 5},
148-
/// {"radius", 3},
149-
/// {"rotation", 220},
150-
/// {"touchCount", 2}
151-
/// }
152-
/// </example>
153-
/// </param>
154-
public void Rotate(Dictionary<string, int> opts)
155-
{
156-
Dictionary<string, object> parameters = new Dictionary<string, object>();
157-
foreach (KeyValuePair<string, int> opt in opts)
158-
{
159-
parameters.Add(opt.Key, opt.Value);
160-
}
161-
162-
Execute(AppiumDriverCommand.Rotate, parameters);
163-
}
164-
165138
public void InstallApp(string appPath) =>
166139
Execute(AppiumDriverCommand.InstallApp, AppiumCommandExecutionHelper.PrepareArgument("appPath", appPath));
167140

src/Appium.Net/Appium/AppiumDriverCommand.cs

-5
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,6 @@ public class AppiumDriverCommand
7878
/// </summary>
7979
public const string LongPressKeyCode = "longPressKeyCode";
8080

81-
/// <summary>
82-
/// Rotate Command.
83-
/// </summary>
84-
public const string Rotate = "rotate";
85-
8681
/// <summary>
8782
/// Get CurrentActivity Command.
8883
/// </summary>

src/Appium.Net/Appium/AppiumElement.cs

-31
Original file line numberDiff line numberDiff line change
@@ -178,37 +178,6 @@ protected virtual object CacheValue(string key, Func<object> getter)
178178

179179
#endregion
180180

181-
#region MJSonMethods
182-
183-
/// <summary>
184-
/// Rotates the device.
185-
/// </summary>
186-
/// <param name="opts">
187-
/// Rotations options like the following:
188-
/// <example>
189-
/// new Dictionary&lt;string, int&gt; {
190-
/// {"x", 114},
191-
/// {"y", 198},
192-
/// {"duration", 5},
193-
/// {"radius", 3},
194-
/// {"rotation", 220},
195-
/// {"touchCount", 2}
196-
/// }
197-
/// </example>
198-
/// </param>
199-
public void Rotate(Dictionary<string, int> opts)
200-
{
201-
Dictionary<string, object> parameters = new Dictionary<string, object>();
202-
foreach (KeyValuePair<string, int> opt in opts)
203-
{
204-
parameters.Add(opt.Key, opt.Value);
205-
}
206-
parameters.Add("element", Id);
207-
Execute(AppiumDriverCommand.Rotate, parameters);
208-
}
209-
210-
#endregion
211-
212181
[Obsolete("The SetImmediateValue method is deprecated and will be removed in future versions. Please use 'SendKeys' instead.")]
213182
public void SetImmediateValue(string value) => Execute(AppiumDriverCommand.SetValue,
214183
new Dictionary<string, object>() { ["id"] = Id, ["value"] = value });

test/integration/Android/OrientationTest.cs

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
using Appium.Net.Integration.Tests.helpers;
22
using NUnit.Framework;
33
using OpenQA.Selenium;
4+
using OpenQA.Selenium.Appium;
45
using OpenQA.Selenium.Appium.Android;
56

67
namespace Appium.Net.Integration.Tests.Android
78
{
89
[TestFixture]
910
class OrientationTest
1011
{
11-
private IWebDriver _driver;
12+
private AppiumDriver _driver;
1213

1314
[OneTimeSetUp]
1415
public void BeforeAll()
@@ -34,9 +35,16 @@ public void AfterAll()
3435
[Test]
3536
public void DeviceOrientationTest()
3637
{
37-
var rotatable = ((IRotatable) _driver);
38+
IRotatable rotatable = _driver;
3839
rotatable.Orientation = ScreenOrientation.Portrait;
3940
Assert.That(rotatable.Orientation, Is.EqualTo(ScreenOrientation.Portrait));
4041
}
42+
43+
[Test]
44+
public void RotationTest()
45+
{
46+
_driver.Orientation = ScreenOrientation.Landscape;
47+
Assert.That(_driver.Orientation, Is.EqualTo(ScreenOrientation.Landscape));
48+
}
4149
}
4250
}

0 commit comments

Comments
 (0)