From d5b43a801efcc57ee199375f00803be61a3ef855 Mon Sep 17 00:00:00 2001 From: Mikrovolnovka Date: Mon, 23 Jun 2014 10:43:06 +0300 Subject: [PATCH] Extending avoidProxy to make it possible make requests to all mobile-specific appium requests from e2e tests code. --- lib/devices/android/android.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/devices/android/android.js b/lib/devices/android/android.js index 78df70224..9b079a7e1 100644 --- a/lib/devices/android/android.js +++ b/lib/devices/android/android.js @@ -69,6 +69,8 @@ Android.prototype.init = function () { , ['POST', new RegExp('^/wd/hub/session/[^/]+/context')] , ['GET', new RegExp('^/wd/hub/session/[^/]+/context')] , ['GET', new RegExp('^/wd/hub/session/[^/]+/contexts')] + , ['POST', new RegExp('^/wd/hub/session/[^/]+/appium')] + , ['GET', new RegExp('^/wd/hub/session/[^/]+/appium')] ]; };