Replies: 7 comments
-
|
I'm not sure whether the problem will get resolve in latest 11.x version? However, I won't be able to upgrade to appium 3.x until there's a stable version. Have to do the workaround by now. |
Beta Was this translation helpful? Give feedback.
-
|
@Johnny987 appium 3 is stable. v11.x and above supports only with Appium 3 |
Beta Was this translation helpful? Give feedback.
-
|
u need to have base-path as /wd/hub |
Beta Was this translation helpful? Give feedback.
-
i've update appium to 3.0.2, but still has the same issue, I don't understand why device-farm use different session endpoint with appium by default? why need explicit base-path to /wd/hub and which not specify in any instruction document? |
Beta Was this translation helpful? Give feedback.
-
|
Hmmm! No specific reason, if remember at some stage in one of the Appium 2 beta this base-path became optional and the plugin didn’t change after that. |
Beta Was this translation helpful? Give feedback.
-
but obviously if you don't set the optional base-path to /wd/hub, the device-farm won't be able to start... |
Beta Was this translation helpful? Give feedback.
-
|
@Johnny987 Yes ur right, that what i'm saying after the switch appium made in one of the beta versions we haven't done it.. We lived with it.. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
Link to Appium logs
Environment
Cause: It's a compatible issue for appium 2.19:
The problem is that the device farm 10.x dashboard is trying to create sessions at /wd/hub/session but my Appium server expects sessions at /session. This is because:
Appium 2.x uses /session as the default endpoint
The device farm dashboard (v10.2.0) might be configured to use the old /wd/hub/session endpoint
WORKAROUND: If I manually set appium base-path to /wd/hub it will work:
appium server --base-path /wd/hub --use-plugins=device-farm --use-drivers=uiautomator2,xcuitest --plugin-device-farm-platform=both --plugin-device-farm-enable-dashboardBeta Was this translation helpful? Give feedback.
All reactions