Hi,
I tried appium inspector 0.10 to record actions on ios simulator for my app, but nothing is getting recorded.
Always I get the below code in the bottom window
public class {scriptName} {
public static void main(String[] args) {
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(CapabilityType.BROWSER_NAME, "iOS");
capabilities.setCapability(CapabilityType.VERSION, "6.1");
capabilities.setCapability(CapabilityType.PLATFORM, "Mac");
capabilities.setCapability("app", "/Users/spiderlogic/Documents/iOS/build/Release-iphonesimulator/eTrack.app");
wd.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);
wd.close();
}
I guess this is the basic code required to setup the appium
But none of my actions are getting shown here
Also, the Replay button always remains disabled
Following are the steps I am performing:-
2) add the application path and check the app check box
3) In preferences, Prelaunch application, Reset Application state after each session, kill process, enable window selector in appium Inspector are checked
4) Launching appium server
5) open ios simulator
6) click on blue i button to open the inspector
7) Now, on performing any actions on my app in the simulator doesnt record anything in inspector
Please throw some light on this
Thanks,
Nishant