osx - How to find/edit the plist file of application installed on iOS simulator -
i'm testing ios application using appium, ruby. application has internal plist file used settings, preferences. tests required set variable in plist. have been doing in hacky way using find command because dont know installed application id be: %x(find . -name "*app name*" | grep ".plist")
returns plist in location this:
~/library/developer/coresimulator/devices/3e18f705-d262-4162-ac23-06592f2d407d/data/containers/data/application/19c5e059-0b1d-4db7-9b6d-40163ff5ef4a/library/preferences/myapp.plist
this has worked ok, has problems. there better way me find application id, or better, way me edit installed apps plist values via xctest? or command xcrun?
Comments
Post a Comment