I am unable to find webviews using context.
Set<String> contextNames =webDriver.getContextHandles();
System.out.println(contextNames.size());
System.out.println(contextNames);
wil give me
1
[NATIVE_APP]
so even when i am on webview page, it is only showing nativeview and not showing other context such as webview or webview1.
I am using appium 1.3.1 and working on xcode 6.1 with iOS simulator 8.1, using appium client 1.7.0
Am i missing something? Someone please help.