Hi All, did anyone get the solution for the above issue? I have everything latest in place. Appium, ios_webkit_debug_proxy, appium drivers, etc. After I start ios_webkit_debug_proxy, am able to see the device in the session list and if I try to open the app, I am not able to see the webview part in the session to inspect. Instead I am seeing the elements as XCUITestInputField, XCUITestInputSecureField (for password), etc. Is this the expected behaviour or will I be able to see the html part of the code? Please help me to solve this issue, if I am really missing anything important.
hereâs my capabilities
IOSDriver driver;
DesiredCapabilities caps = new DesiredCapabilities();
caps.SetCapabilitiy(âappâ, appPath);
caps.SetCapabilitiy(âbundleidâ, âcom..*â);
caps.SetCapability(âautoWebViewâ, âtrueâ);
caps.SetCapability(âbrowserNameâ, âiOSâ);
caps.SetCapability (âplatformVersionâ, Constants.PlatformVersion);
caps.SetCapability(âdeviceNameâ, deviceName);
caps.SetCapability(âstartIWDPâ,true);
driver = new IOSDriver(new URL(âhttp://127.0.0.1:4723/wd/hubâ),caps, TimeUnit.FromSeconds(10000));
In the appium log I am able to see only NATIVE_APP Context but not the WEBVIEW. Please help.