We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a102334 commit b409c98Copy full SHA for b409c98
src/e2eIosTest/java/io/appium/java_client/ios/IOSDriverTest.java
@@ -50,9 +50,9 @@ public void setupEach() {
50
51
@Test
52
public void addCustomCommandTest() {
53
- driver.addCommand(HttpMethod.GET, "/sessions", "getSessions");
54
- final Response getSessions = driver.execute("getSessions");
55
- assertNotNull(getSessions.getSessionId());
+ driver.addCommand(HttpMethod.GET, "/status", "getStatus");
+ final Response getStatus = driver.execute("getStatus");
+ assertNotNull(getStatus.getSessionId());
56
}
57
58
0 commit comments