Hi Team,
IOS Configuration : Appium 1.3.4,Mac OS 10.9.4,Xcode 6.1.1,IOS 8.1 (iPhone 6) device
I was providing correct credentials in the Sign In Screen and tap on ‘Sign In’ button in the IOS App , it giving message as “Sign In Problem” , no issues with credentials , manually I am able to sign in using same credentials.
below is code -
driver.findElementByXPath("//UIAApplication[1]/UIAWindow[2]/UIATableView[1]/UIATableCell[1]").sendKeys("[email protected]");
driver.findElementByXPath("//UIAApplication[1]/UIAWindow[2]/UIATableView[1]/UIATableCell[2]").sendKeys(“testpwd1”);
driver.findElementByXPath("//UIAApplication[1]/UIAWindow[2]/UIAButton[1]").click();
I was suspecting , password may not be taking correctly , then I have encrypted password and tried to enter as follows same “Sign In” problem encountered.
String pass1 = “testpwd1”;
byte[] encodedPwdBytes = Base64.encodeBase64(pass1.getBytes());
String pass2 = new String(encodedPwdBytes,“UTF-8”); // converting byte code to string and trying to sign in , still same issue.
Please find the appium log for reference
2015-02-26 12:06:55:425 - info: Welcome to Appium v1.3.4 (REV c8c79a85fbd6870cd6fc3d66d038a115ebe22efe)
2015-02-26 12:06:55:427 - info: Appium REST http interface listener started on 0.0.0.0:4723
2015-02-26 12:06:55:429 - info: [debug] Non-default server args: {“app”:“com.safeway.j4u”,“udid”:“e47ba3300ef7bcbb943db3240b5213813a5d3938”,“noReset”:true,“log”:"/Kiran/appium.log",“deviceName”:“iPhone 6”,“platformName”:“iOS”,“platformVersion”:“8.1”,“showSimulatorLog”:true,“defaultCommandTimeout”:7200}
2015-02-26 12:06:55:430 - warn: Deprecated server args: {"–show-sim-log":“use instead: --show-ios-log”}
2015-02-26 12:06:55:430 - info: Console LogLevel: debug
2015-02-26 12:06:55:430 - info: File LogLevel: debug
2015-02-26 12:06:55:594 - info: --> GET /wd/hub/status {}
2015-02-26 12:06:55:596 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”}}}
2015-02-26 12:06:55:600 - info: <-- GET /wd/hub/status 200 5.614 ms - 104 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”}}}
2015-02-26 12:07:04:859 - info: --> POST /wd/hub/session {“desiredCapabilities”:{“automationName”:“Appium”,“platfromName”:“iOS”,“app”:"/Kiran/iosdownloads/Safeway4/Safeway.app",“showIOSLog”:true,“platformName”:“iOS”,“deviceName”:“adurgam’s iPhone”,“browserName”:"",“autoLaunch”:true,“udid”:“e47ba3300ef7bcbb943db3240b5213813a5d3938”,“platfromVersion”:“8.1”}}
2015-02-26 12:07:04:859 - info: Client User-Agent string: Apache-HttpClient/4.3.4 (java 1.5)
2015-02-26 12:07:04:861 - info: [debug] The following desired capabilities were provided, but not recognized by appium. They will be passed on to any other services running on this server. : platfromName, platfromVersion
2015-02-26 12:07:04:862 - info: [debug] Using local app from desired caps: /Kiran/iosdownloads/Safeway4/Safeway.app
2015-02-26 12:07:04:863 - info: [debug] Creating new appium session 95e58672-2be8-4724-b550-43bbece0249d
2015-02-26 12:07:04:865 - info: [debug] Removing any remaining instruments sockets
2015-02-26 12:07:04:866 - info: [debug] Cleaned up instruments socket /tmp/instruments_sock
2015-02-26 12:07:04:866 - info: [debug] Setting Xcode folder
2015-02-26 12:07:04:874 - info: [debug] Setting Xcode version
2015-02-26 12:07:04:928 - info: [debug] Setting iOS SDK Version
2015-02-26 12:07:04:980 - info: [debug] Getting sdk version from xcrun with a timeout
2015-02-26 12:07:04:987 - info: [debug] iOS SDK Version set to 8.1
2015-02-26 12:07:04:987 - info: [debug] Not checking whether simulator is available since we’re on a real device
2015-02-26 12:07:04:987 - info: [debug] Detecting automation tracetemplate
2015-02-26 12:07:04:992 - info: [debug] Not auto-detecting udid, running on sim
2015-02-26 12:07:04:993 - info: [debug] Could not parse plist file (as binary) at /Kiran/iosdownloads/Safeway4/Safeway.app/en.lproj/Localizable.strings
2015-02-26 12:07:04:993 - info: Will try to parse the plist file as XML
2015-02-26 12:07:04:994 - info: [debug] Could not parse plist file (as XML) at /Kiran/iosdownloads/Safeway4/Safeway.app/en.lproj/Localizable.strings
2015-02-26 12:07:04:994 - warn: Could not parse app Localizable.strings; assuming it doesn’t exist
2015-02-26 12:07:04:994 - info: [debug] Getting bundle ID from app
2015-02-26 12:07:04:999 - info: [debug] Parsed app Info.plist (as binary)
2015-02-26 12:07:04:999 - info: [debug] Creating instruments
2015-02-26 12:07:05:000 - info: On some xcode 6 platforms, instruments-without-delay does not work. If you experience this, you will need to re-run appium with the --native-instruments-lib flag
2015-02-26 12:07:05:001 - info: [debug] Preparing uiauto bootstrap
2015-02-26 12:07:05:001 - info: [debug] Dynamic bootstrap dir: /Users/admin/Library/Application Support/appium/bootstrap
2015-02-26 12:07:05:001 - info: [debug] Dynamic env: {“nodePath”:"/Applications/Appium.app/Contents/Resources/node/bin/node",“commandProxyClientPath”:"/Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js",“instrumentsSock”:"/tmp/instruments_sock",“interKeyDelay”:null,“justLoopInfinitely”:false,“autoAcceptAlerts”:false,“sendKeyStrategy”:“grouped”}
2015-02-26 12:07:05:007 - info: [debug] Dynamic bootstrap code: // This file is automatically generated. Do not manually modify!
…
2015-02-26 12:07:05:007 - info: [debug] Dynamic bootstrap path: /Users/admin/Library/Application Support/appium/bootstrap/bootstrap-0943baae6b1d6f5b.js
2015-02-26 12:07:05:010 - info: [debug] Reusing dynamic bootstrap: /Users/admin/Library/Application Support/appium/bootstrap/bootstrap-0943baae6b1d6f5b.js
2015-02-26 12:07:05:011 - info: [debug] Getting device string from opts: {“forceIphone”:false,“forceIpad”:false,“xcodeVersion”:“6.1.1”,“iOSSDKVersion”:“8.1”,“deviceName”:“adurgam’s iPhone”,“platformVersion”:“8.1”}
2015-02-26 12:07:05:011 - info: [debug] fixDevice is on
2015-02-26 12:07:05:011 - info: [debug] Final device string is: ‘adurgam’s iPhone (8.1 Simulator)’
2015-02-26 12:07:05:012 - info: [debug] Not setting device type since we’re on a real device
2015-02-26 12:07:05:012 - info: [debug] Checking whether we need to set app preferences
2015-02-26 12:07:05:012 - info: [debug] Not setting iOS and app preferences since we’re on a real device
2015-02-26 12:07:05:012 - info: [debug] Reset not set, not ending sim or cleaning up app state
2015-02-26 12:07:05:012 - info: [debug] Not setting locale because we’re using a real device
2015-02-26 12:07:05:013 - info: [debug] No iOS / app preferences to set
2015-02-26 12:07:05:014 - info: [debug] Starting iOS device log capture via deviceconsole
2015-02-26 12:07:06:111 - info: [debug] Not pre-launching simulator
2015-02-26 12:07:06:111 - info: [debug] Creating iDevice object with udid e47ba3300ef7bcbb943db3240b5213813a5d3938
2015-02-26 12:07:06:112 - info: [debug] Checking app install status using: /Applications/Appium.app/Contents/Resources/node_modules/appium/build/fruitstrap/fruitstrap isInstalled --id e47ba3300ef7bcbb943db3240b5213813a5d3938 --bundle com.safeway.j4u
2015-02-26 12:07:06:528 - info: [debug] App is installed.
2015-02-26 12:07:06:528 - info: [debug] fullReset not requested. No need to install.
2015-02-26 12:07:06:528 - info: [debug] Starting command proxy.
2015-02-26 12:07:06:530 - info: [debug] Instruments socket server started at /tmp/instruments_sock
2015-02-26 12:07:06:530 - info: [debug] Starting instruments
2015-02-26 12:07:06:536 - info: [debug] Instruments is at: /Applications/Xcode.app/Contents/Developer/usr/bin/instruments
2015-02-26 12:07:06:537 - info: Launching instruments
2015-02-26 12:07:06:540 - info: [debug] Attempting to run app on real device with UDID e47ba3300ef7bcbb943db3240b5213813a5d3938
2015-02-26 12:07:06:540 - info: [debug] Spawning instruments with command: /Applications/Xcode.app/Contents/Developer/usr/bin/instruments -t /Applications/Xcode.app/Contents/Applications/Instruments.app/Contents/PlugIns/AutomationInstrument.xrplugin/Contents/Resources/Automation.tracetemplate -D /tmp/appium-instruments/instrumentscli0.trace -w e47ba3300ef7bcbb943db3240b5213813a5d3938 com.safeway.j4u -e UIASCRIPT “/Users/admin/Library/Application Support/appium/bootstrap/bootstrap-0943baae6b1d6f5b.js” -e UIARESULTSPATH /tmp/appium-instruments
2015-02-26 12:07:06:540 - info: [debug] And extra without-delay env: {}
2015-02-26 12:07:06:540 - info: [debug] And launch timeouts (in ms): {“global”:90000}
2015-02-26 12:07:06:604 - info: --> GET /wd/hub/status {}
2015-02-26 12:07:06:605 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:06:607 - info: <-- GET /wd/hub/status 200 1.900 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:07:206 - info: [debug] [INST STDERR] 2015-02-26 17:37:07.205 instruments[1747:4b17] WebKit Threading Violation - initial use of WebKit from a secondary thread.
2015-02-26 12:07:08:076 - info: Instruments is ready to receive commands
2015-02-26 12:07:08:077 - info: [debug] Instruments launched. Starting poll loop for new commands.
2015-02-26 12:07:08:077 - info: [debug] Setting bootstrap config keys/values
2015-02-26 12:07:08:077 - info: [debug] Pushing command to appium work queue: “target = $.target();\nau = $;\n$.isVerbose = true;\n”
2015-02-26 12:07:08:079 - info: [debug] Socket data received (2 bytes)
2015-02-26 12:07:08:080 - info: [debug] Socket data being routed.
2015-02-26 12:07:08:081 - info: [debug] Sending command to instruments: target = $.target();
au = $;
$.isVerbose = true;
2015-02-26 12:07:08:983 - info: [debug] [INST] 2015-02-26 12:05:42 +0000 Debug: evaluation finished
2015-02-26 12:07:08:985 - info: [debug] [INST] 2015-02-26 12:05:42 +0000 Debug: responding with:
2015-02-26 12:07:08:985 - info: [debug] [INST] 2015-02-26 12:05:42 +0000 Debug: Running system command #1: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:true}…
2015-02-26 12:07:09:035 - info: [debug] Socket data received (27 bytes)
2015-02-26 12:07:09:036 - info: [debug] Socket data being routed.
2015-02-26 12:07:09:036 - info: [debug] Got result from instruments: {“status”:0,“value”:true}
2015-02-26 12:07:09:037 - info: [debug] Setting initial orientation to PORTRAIT
2015-02-26 12:07:09:037 - info: [debug] Pushing command to appium work queue: “au.setScreenOrientation(‘PORTRAIT’)”
2015-02-26 12:07:09:037 - info: [debug] Sending command to instruments: au.setScreenOrientation(‘PORTRAIT’)
2015-02-26 12:07:10:063 - info: [debug] [INST] 2015-02-26 12:05:43 +0000 Debug: Got new command 1 from instruments: au.setScreenOrientation(‘PORTRAIT’)
2015-02-26 12:07:10:064 - info: [debug] [INST] 2015-02-26 12:05:43 +0000 Debug: evaluating au.setScreenOrientation(‘PORTRAIT’)
2015-02-26 12:07:10:064 - info: [debug] [INST] 2015-02-26 12:05:43 +0000 Debug: target.setDeviceOrientation(“1”)
2015-02-26 12:07:11:025 - info: [debug] [INST] 2015-02-26 12:05:44 +0000 Debug: evaluation finished
2015-02-26 12:07:11:026 - info: [debug] [INST] 2015-02-26 12:05:44 +0000 Debug: responding with:
2015-02-26 12:07:11:026 - info: [debug] [INST] 2015-02-26 12:05:44 +0000 Debug: Running system command #2: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:“PORTRAIT”}…
2015-02-26 12:07:11:081 - info: [debug] Socket data received (33 bytes)
2015-02-26 12:07:11:082 - info: [debug] Socket data being routed.
2015-02-26 12:07:11:082 - info: [debug] Got result from instruments: {“status”:0,“value”:“PORTRAIT”}
2015-02-26 12:07:11:082 - info: [debug] Waiting for app source to contain elements
2015-02-26 12:07:11:083 - info: [debug] Pushing command to appium work queue: “au.mainApp().getTreeForXML()”
2015-02-26 12:07:11:083 - info: [debug] Sending command to instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:12:126 - info: [debug] [INST] 2015-02-26 12:05:45 +0000 Debug: Got new command 2 from instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:12:127 - info: [debug] [INST] 2015-02-26 12:05:45 +0000 Debug: evaluating au.mainApp().getTreeForXML()
2015-02-26 12:07:12:546 - info: [debug] [INST] 2015-02-26 12:05:46 +0000 Debug: evaluation finished
2015-02-26 12:07:12:548 - info: [debug] [INST] 2015-02-26 12:05:46 +0000 Debug: responding with::true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/0",“x”:0,“y”:0,“width”:375,“height”:667},">":[]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIANavigationBar”:{"@":{“name”:“HomeView”,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0",“x”:0,“y”:24.125,“width”:375,“height”:51.5625},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0",“x”:0,“y”:0.6875,“width”:375,“height”:75},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0/0",“x”:0,“y”:75.6875,“width”:375,“height”:0},">":[]}}]}},{“UIAButton”:{"@":{“name”:“Back”,“label”:“Back”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/1",“x”:9.375,“y”:37.6015625,“width”:24.609375,“height”:24.609375},">":[]}},{“UIAButton”:{"@":{“name”:“Navigation Drawer”,“label”:“Navigation Drawer”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/2",“x”:18.75,“y”:37.015625,“width”:24.609375,“height”:24.609375},">":[]}},{“UIAButton”:{"@":{“name”:“Search”,“label”:“Search”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/3",“x”:318.75,“y”:31.15625,“width”:50.390625,“height”:35.15625},">":[]}}]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/1",“x”:135.9375,“y”:75.6875,“width”:104.296875,“height”:93.75},">":[]}},{“UIACollectionView”:{"@":{“name”:null,“label”:null,“value”:“page 1 of 1”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2",“x”:24.609375,“y”:202.25,“width”:328.125,“height”:380.859375},">":[{“UIACollectionCell”:{"@":{“name”:“Weekly Ad”,“label”:“Weekly Ad”,“value”:0,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2/0",“x”:24.609375,“y”:202.25,“width”:83.203125,“height”:84.375},">":[]}},{“UIACollectionCell”:{"@":{“name”:“just for U”,“label”:“just for U”,“value”:0,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2/1",“x”:147.0703125,“y”:202.25,“width”:83.203125,“height”:84.375},">":[]}},{“UIACollectionCell”:{"@":{“name”:“Locator”,“label”:“Locator”,“value”:0,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2/2",“x”:269.53125,“y”:202.25,“width”:83.203125,“height”:84.375},">":[]}},{“UIACollectionCell”:{"@":{“name”:“My Card”,“label”:“My Card”,“value”:0,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2/3",“x”:24.609375,“y”:324.125,“width”:83.203125,“height”:84.375},">":[]}},{“UIACollectionCell”:{"@":{“name”:“My List”,“label”:“My List”,“value”:0,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2/4",“x”:147.0703125,“y”:324.125,“width”:83.203125,“height”:84.375},">":[]}},{“UIACollectionCell”:{"@":{“name”:“Scan”,“label”:“Scan”,“value”:0,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2/5",“x”:269.53125,“y”:324.125,“width”:83.203125,“height”:84.375},">":[]}},{“UIACollectionCell”:{"@":{“name”:“More”,“label”:“More”,“value”:0,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2/6",“x”:24.609375,“y”:446,“width”:83.203125,“height”:84.375},">":[]}}]}},{“UIAButton”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/3",“x”:5.859375,“y”:566.703125,“width”:363.28125,“height”:105.46875},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/4",“x”:9.375,“y”:566.703125,“width”:35.15625,“height”:35.15625},">":[]}},{“UIAStaticText”:{"@":{“name”:“Rewards Summary”,“label”:“Rewards Summary”,“value”:“Rewards Summary”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/5",“x”:48.046875,“y”:563.1875,“width”:148.828125,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“as of 00/00/00 at 12:00 am”,“label”:“as of 00/00/00 at 12:00 am”,“value”:“as of 00/00/00 at 12:00 am”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/6",“x”:194.53125,“y”:564.359375,“width”:168.75,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“Restrictions and exclusions apply. View program details.”,“label”:“Restrictions and exclusions apply. View program details.”,“value”:“Restrictions and exclusions apply. View program details.”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/7",“x”:48.046875,“y”:579.59375,“width”:344.53125,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“Rewards Summary”,“label”:“Rewards Summary”,“value”:“Rewards Summary”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/8",“x”:48.046875,“y”:570.21875,“width”:148.828125,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“as of 00/00/00 at 12:00 am”,“label”:“as of 00/00/00 at 12:00 am”,“value”:“as of 00/00/00 at 12:00 am”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/9",“x”:194.53125,“y”:571.390625,“width”:168.75,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“99”,“label”:“99”,“value”:“99”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/10",“x”:35.15625,“y”:593.65625,“width”:55.078125,“height”:43.359375},">":[]}},{“UIAStaticText”:{"@":{“name”:“99”,“label”:“99”,“value”:“99”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/11",“x”:159.375,“y”:593.65625,“width”:55.078125,“height”:43.359375},">":[]}},{“UIAStaticText”:{"@":{“name”:“99”,“label”:“99”,“value”:“99”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/12",“x”:284.765625,“y”:593.65625,“width”:55.078125,“height”:43.359375},">":[]}},{“UIAStaticText”:{"@":{“name”:“Point Toward Next Reward”,“label”:“Point Toward Next Reward”,“value”:“Point Toward Next Reward”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/13",“x”:17.578125,“y”:625.296875,“width”:90.234375,“height”:41.015625},">":[]}},{“UIAStaticText”:{"@":{“name”:“10¢ Gas Rewards Available”,“label”:“10¢ Gas Rewards Available”,“value”:“10¢ Gas Rewards Available”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/14",“x”:130.078125,“y”:625.296875,“width”:114.84375,“height”:41.015625},">":[]}},{“UIAStaticText”:{"@":{“name”:“Rewards Expiring End of Month”,“label”:“Rewards Expiring End of Month”,“value”:“Rewards Expiring End of Month”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/15",“x”:254.296875,“y”:625.296875,“width”:114.84375,“height”:41.015625},">":[]}},{“UIAButton”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/16",“x”:5.859375,“y”:566.703125,“width”:363.28125,“height”:50.9765625},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/17",“x”:29.296875,“y”:590.140625,“width”:35.15625,“height”:35.15625},">":[]}},{“UIAStaticText”:{"@":{“name”:“Rewards Points”,“label”:“Rewards Points”,“value”:“Rewards Points”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/18",“x”:73.828125,“y”:590.140625,“width”:150,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“Earn up to $1 per gallon in Rewards. More info.”,“label”:“Earn up to $1 per gallon in Rewards. More info.”,“value”:“Earn up to $1 per gallon in Rewards. More info.”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/19",“x”:73.828125,“y”:606.546875,“width”:285.9375,“height”:24.609375},">":[]}},{“UIAToolbar”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid
2015-02-26 12:07:12:549 - info: [debug] [INST] “:true,“visible”:false,“hint”:null,“path”:”/0/1/20”,“x”:0,“y”:666.3125,“width”:375,“height”:51.5625},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/20/0",“x”:0,“y”:665.7265625,“width”:375,“height”:0.5859375},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/20/1",“x”:0,“y”:666.3125,“width”:375,“height”:51.5625},">":[]}}]}}]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/2",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIAStatusBar”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3/0",“x”:0,“y”:0.6875,“width”:375,“height”:23.4375},">":[{“UIAElement”:{"@":{“name”:“No SIM”,“label”:“No SIM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/0",“x”:7.03125,“y”:0.6875,“width”:49.21875,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“3 of 3 Wi-Fi bars”,“label”:“3 of 3 Wi-Fi bars”,“value”:“applabs-execs”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/1",“x”:62.109375,“y”:0.6875,“width”:15.234375,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“5:35 PM”,“label”:“5:35 PM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/2",“x”:160.546875,“y”:0.6875,“width”:55.078125,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“100% battery power, On AC Power”,“label”:“100% battery power, On AC Power”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/3",“x”:290.625,“y”:0.6875,“width”:78.515625,“height”:23.4375},">":[]}}]}}]}}]}}}
2015-02-26 12:07:12:549 - info: [debug] [INST] 2015-02-26 12:05:46 +0000 Debug: Running system command #3: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:n…
2015-02-26 12:07:12:604 - info: [debug] Socket data received (8189 bytes)
2015-02-26 12:07:12:605 - info: [debug] Socket data received (2913 bytes)
2015-02-26 12:07:12:606 - info: [debug] Socket data being routed.
2015-02-26 12:07:12:606 - info: [debug] Got result from instruments: {“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0",“x”:0,“y”:24.125,“width”:375,“height”:642.1875},">":[{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”
2015-02-26 12:07:12:609 - info: [debug] Device launched! Ready for commands
2015-02-26 12:07:12:609 - info: [debug] Setting command timeout to the default of 7200 secs
2015-02-26 12:07:12:610 - info: [debug] Appium session started with sessionId 95e58672-2be8-4724-b550-43bbece0249d
2015-02-26 12:07:12:611 - info: <-- POST /wd/hub/session 303 7752.508 ms - 9
2015-02-26 12:07:12:627 - info: --> GET /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d {}
2015-02-26 12:07:12:629 - info: [debug] Responding to client with success: {“status”:0,“value”:{“webStorageEnabled”:false,“locationContextEnabled”:false,“browserName”:"",“platform”:“MAC”,“javascriptEnabled”:true,“databaseEnabled”:false,“takesScreenshot”:true,“networkConnectionEnabled”:false,“warnings”:{},“desired”:{“automationName”:“Appium”,“platfromName”:“iOS”,“app”:"/Kiran/iosdownloads/Safeway4/Safeway.app",“showIOSLog”:true,“platformName”:“iOS”,“deviceName”:“adurgam’s iPhone”,“browserName”:"",“autoLaunch”:true,“udid”:“e47ba3300ef7bcbb943db3240b5213813a5d3938”,“platfromVersion”:“8.1”},“automationName”:“Appium”,“platfromName”:“iOS”,“app”:"/Kiran/iosdownloads/Safeway4/Safeway.app",“showIOSLog”:true,“platformName”:“iOS”,“deviceName”:“adurgam’s iPhone”,“autoLaunch”:true,“udid”:“e47ba3300ef7bcbb943db3240b5213813a5d3938”,“platfromVersion”:“8.1”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:12:630 - info: <-- GET /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d 200 2.218 ms - 834 {“status”:0,“value”:{“webStorageEnabled”:false,“locationContextEnabled”:false,“browserName”:"",“platform”:“MAC”,“javascriptEnabled”:true,“databaseEnabled”:false,“takesScreenshot”:true,“networkConnectionEnabled”:false,“warnings”:{},“desired”:{“automationName”:“Appium”,“platfromName”:“iOS”,“app”:"/Kiran/iosdownloads/Safeway4/Safeway.app",“showIOSLog”:true,“platformName”:“iOS”,“deviceName”:“adurgam’s iPhone”,“browserName”:"",“autoLaunch”:true,“udid”:“e47ba3300ef7bcbb943db3240b5213813a5d3938”,“platfromVersion”:“8.1”},“automationName”:“Appium”,“platfromName”:“iOS”,“app”:"/Kiran/iosdownloads/Safeway4/Safeway.app",“showIOSLog”:true,“platformName”:“iOS”,“deviceName”:“adurgam’s iPhone”,“autoLaunch”:true,“udid”:“e47ba3300ef7bcbb943db3240b5213813a5d3938”,“platfromVersion”:“8.1”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:12:658 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/timeouts/implicit_wait {“ms”:120000}
2015-02-26 12:07:12:659 - info: [debug] Set iOS implicit wait to 120000ms
2015-02-26 12:07:12:660 - info: [debug] Responding to client with success: {“status”:0,“value”:null,“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:12:661 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/timeouts/implicit_wait 200 2.576 ms - 76 {“status”:0,“value”:null,“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:12:666 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element {“using”:“name”,“value”:“More”}
2015-02-26 12:07:12:667 - warn: [DEPRECATED] The name locator strategy has been deprecated and will be removed. Please use the accessibility id locator strategy instead.
2015-02-26 12:07:12:668 - info: [debug] Waiting up to 120000ms for condition
2015-02-26 12:07:12:668 - info: [debug] Pushing command to appium work queue: “au.getElementByName(‘More’)”
2015-02-26 12:07:12:668 - info: [debug] Sending command to instruments: au.getElementByName(‘More’)
2015-02-26 12:07:13:646 - info: [debug] [INST] 2015-02-26 12:05:47 +0000 Debug: Got new command 3 from instruments: au.getElementByName(‘More’)
2015-02-26 12:07:13:648 - info: [debug] [INST] 2015-02-26 12:05:47 +0000 Debug: evaluating au.getElementByName(‘More’)
2015-02-26 12:07:13:930 - info: [debug] [INST] 2015-02-26 12:05:47 +0000 Debug: evaluation finished
2015-02-26 12:07:13:932 - info: [debug] [INST] 2015-02-26 12:05:47 +0000 Debug: Lookup returned [object UIACollectionCell] with the name “More” (id: 0).
2015-02-26 12:07:13:933 - info: [debug] [INST] 2015-02-26 12:05:47 +0000 Debug: responding with:
2015-02-26 12:07:13:934 - info: [debug] [INST] 2015-02-26 12:05:47 +0000 Debug: Running system command #4: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“ELEMENT”:“0”}}…
2015-02-26 12:07:13:986 - info: [debug] Socket data received (38 bytes)
2015-02-26 12:07:13:986 - info: [debug] Socket data being routed.
2015-02-26 12:07:13:986 - info: [debug] Got result from instruments: {“status”:0,“value”:{“ELEMENT”:“0”}}
2015-02-26 12:07:13:987 - info: [debug] Responding to client with success: {“status”:0,“value”:{“ELEMENT”:“0”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:13:987 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element 200 1321.478 ms - 87 {“status”:0,“value”:{“ELEMENT”:“0”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:13:996 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/0/click {“id”:“0”}
2015-02-26 12:07:13:998 - info: [debug] Pushing command to appium work queue: “au.tapById(‘0’)”
2015-02-26 12:07:13:998 - info: [debug] Sending command to instruments: au.tapById(‘0’)
2015-02-26 12:07:14:897 - info: [debug] [INST] 2015-02-26 12:05:48 +0000 Debug: Got new command 4 from instruments: au.tapById(‘0’)
2015-02-26 12:07:14:898 - info: [debug] [INST] 2015-02-26 12:05:48 +0000 Debug: evaluating au.tapById(‘0’)
2015-02-26 12:07:14:900 - info: [debug] [INST] 2015-02-26 12:05:48 +0000 Debug: UIACollectionCell.tap()
2015-02-26 12:07:15:045 - info: [debug] [INST] 2015-02-26 12:05:48 +0000 Debug: evaluation finished
2015-02-26 12:07:15:047 - info: [debug] [INST] 2015-02-26 12:05:48 +0000 Debug: responding with:
2015-02-26 12:07:15:048 - info: [debug] [INST] 2015-02-26 12:05:48 +0000 Debug: Running system command #5: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:""}…
2015-02-26 12:07:15:099 - info: [debug] Socket data received (25 bytes)
2015-02-26 12:07:15:099 - info: [debug] Socket data being routed.
2015-02-26 12:07:15:099 - info: [debug] Got result from instruments: {“status”:0,“value”:""}
2015-02-26 12:07:15:100 - info: [debug] Responding to client with success: {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:15:100 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/0/click 200 1104.960 ms - 74 {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:15:106 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element {“using”:“name”,“value”:“Sign In”}
2015-02-26 12:07:15:107 - info: [debug] Waiting up to 120000ms for condition
2015-02-26 12:07:15:107 - info: [debug] Pushing command to appium work queue: “au.getElementByName(‘Sign In’)”
2015-02-26 12:07:15:108 - info: [debug] Sending command to instruments: au.getElementByName(‘Sign In’)
2015-02-26 12:07:16:144 - info: [debug] [INST] 2015-02-26 12:05:49 +0000 Debug: Got new command 5 from instruments: au.getElementByName(‘Sign In’)
2015-02-26 12:07:16:146 - info: [debug] [INST] 2015-02-26 12:05:49 +0000 Debug: evaluating au.getElementByName(‘Sign In’)
2015-02-26 12:07:16:221 - info: [debug] [INST] 2015-02-26 12:05:50 +0000 Debug: evaluation finished
2015-02-26 12:07:16:226 - info: [debug] [INST] 2015-02-26 12:05:50 +0000 Debug: Lookup returned [object UIATableCell] with the name “Sign In” (id: 1).
2015-02-26 12:07:16:226 - info: [debug] [INST] 2015-02-26 12:05:50 +0000 Debug: responding with:
2015-02-26 12:05:50 +0000 Debug: Running system command #6: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“ELEMENT”:“1”}}…
2015-02-26 12:07:16:277 - info: [debug] Socket data received (38 bytes)
2015-02-26 12:07:16:278 - info: [debug] Socket data being routed.
2015-02-26 12:07:16:278 - info: [debug] Got result from instruments: {“status”:0,“value”:{“ELEMENT”:“1”}}
2015-02-26 12:07:16:278 - info: [debug] Responding to client with success: {“status”:0,“value”:{“ELEMENT”:“1”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:16:279 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element 200 1172.768 ms - 87 {“status”:0,“value”:{“ELEMENT”:“1”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:16:285 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/1/click {“id”:“1”}
2015-02-26 12:07:16:286 - info: [debug] Pushing command to appium work queue: “au.tapById(‘1’)”
2015-02-26 12:07:16:286 - info: [debug] Sending command to instruments: au.tapById(‘1’)
2015-02-26 12:07:17:240 - info: [debug] [INST] 2015-02-26 12:05:51 +0000 Debug: Got new command 6 from instruments: au.tapById(‘1’)
2015-02-26 12:07:17:242 - info: [debug] [INST] 2015-02-26 12:05:51 +0000 Debug: evaluating au.tapById(‘1’)
2015-02-26 12:07:17:243 - info: [debug] [INST] 2015-02-26 12:05:51 +0000 Debug: UIATableCell.tap()
2015-02-26 12:07:17:589 - info: [debug] Socket data received (25 bytes)
2015-02-26 12:07:17:589 - info: [debug] Socket data being routed.
2015-02-26 12:07:17:590 - info: [debug] Got result from instruments: {“status”:0,“value”:""}
2015-02-26 12:07:17:590 - info: [debug] Responding to client with success: {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:17:590 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/1/click 200 1305.545 ms - 74 {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:17:596 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element {“using”:“xpath”,“value”:"//UIAApplication[1]/UIAWindow[2]/UIATableView[1]/UIATableCell[1]"}
2015-02-26 12:07:17:598 - info: [debug] Waiting up to 120000ms for condition
2015-02-26 12:07:17:598 - info: [debug] Pushing command to appium work queue: “au.mainApp().getTreeForXML()”
2015-02-26 12:07:17:598 - info: [debug] Sending command to instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:17:606 - info: [debug] [INST] 2015-02-26 12:05:51 +0000 Debug: evaluation finished
2015-02-26 12:07:17:608 - info: [debug] [INST] 2015-02-26 12:05:51 +0000 Debug: responding with:
2015-02-26 12:07:17:618 - info: [debug] [INST] 2015-02-26 12:05:51 +0000 Debug: Running system command #7: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:""}…
2015-02-26 12:07:18:497 - info: [debug] [INST] 2015-02-26 12:05:52 +0000 Debug: Got new command 7 from instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:18:499 - info: [debug] [INST] 2015-02-26 12:05:52 +0000 Debug: evaluating au.mainApp().getTreeForXML()
2015-02-26 12:07:18:918 - info: [debug] [INST] 2015-02-26 12:05:52 +0000 Debug: evaluation finished
2015-02-26 12:07:18:921 - info: [debug] [INST] 2015-02-26 12:05:52 +0000 Debug: responding with::true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/0",“x”:0,“y”:0,“width”:375,“height”:667},">":[]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIANavigationBar”:{"@":{“name”:“Sign In”,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0",“x”:0,“y”:24.125,“width”:375,“height”:51.5625},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0",“x”:0,“y”:0.6875,“width”:375,“height”:75},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0/0",“x”:0,“y”:75.6875,“width”:375,“height”:0.5859375},">":[]}}]}},{“UIAButton”:{"@":{“name”:“Cancel”,“label”:“Cancel”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/1",“x”:9.375,“y”:33.5,“width”:63.28125,“height”:35.15625},">":[]}},{“UIAButton”:{"@":{“name”:“Back”,“label”:“Back”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/2",“x”:9.375,“y”:37.6015625,“width”:24.609375,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“Sign In”,“label”:“Sign In”,“value”:“Sign In”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/3",“x”:148.828125,“y”:33.5,“width”:77.34375,“height”:31.640625},">":[]}}]}},{“UIAScrollView”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1",“x”:0,“y”:75.6875,“width”:375,“height”:590.625},">":[{“UIAWebView”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/0",“x”:0,“y”:75.6875,“width”:375,“height”:590.625},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/1",“x”:372.0703125,“y”:75.6875,“width”:2.9296875,“height”:590.625},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/2",“x”:0,“y”:663.3828125,“width”:375,“height”:2.9296875},">":[]}}]}},{“UIAStaticText”:{"@":{“name”:“Please sign in with your safeway.com account”,“label”:“Please sign in with your safeway.com account”,“value”:“Please sign in with your safeway.com account”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2",“x”:0,“y”:93.265625,“width”:375,“height”:46.875},">":[]}},{“UIATableView”:{"@":{“name”:null,“label”:null,“value”:“rows 1 to 2 of 2”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3",“x”:0,“y”:110.84375,“width”:375,“height”:365.625},">":[{“UIATableCell”:{"@":{“name”:“EmailAddress”,“label”:null,“value”:"",“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/0",“x”:0,“y”:151.859375,“width”:375,“height”:44.53125},">":[{“UIATextField”:{"@":{“name”:“EmailAddress”,“label”:“EmailAddress”,“value”:“Email Address”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/0/0",“x”:11.71875,“y”:154.203125,“width”:351.5625,“height”:35.15625},">":[]}}]}},{“UIATableCell”:{"@":{“name”:“Password”,“label”:null,“value”:"",“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/1",“x”:0,“y”:196.390625,“width”:375,“height”:44.53125},">":[{“UIASecureTextField”:{"@":{“name”:“Password”,“label”:“Password”,“value”:“Password”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/1/0",“x”:11.71875,“y”:198.734375,“width”:351.5625,“height”:35.15625},">":[]}}]}}]}},{“UIAButton”:{"@":{“name”:“Sign In”,“label”:“Sign In”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/4",“x”:9.375,“y”:263.1875,“width”:353.90625,“height”:41.015625},">":[]}},{“UIAButton”:{"@":{“name”:“Having Trouble Signing In?”,“label”:“Having Trouble Signing In?”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/5",“x”:10.546875,“y”:321.78125,“width”:353.90625,“height”:41.015625},">":[]}},{“UIAStaticText”:{"@":{“name”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“label”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“value”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/6",“x”:9.375,“y”:386.234375,“width”:356.25,“height”:52.734375},">":[]}},{“UIAButton”:{"@":{“name”:“Register”,“label”:“Register”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/7",“x”:9.375,“y”:450.6875,“width”:356.25,“height”:41.015625},">":[]}}]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/2",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIAStatusBar”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3/0",“x”:0,“y”:0.6875,“width”:375,“height”:23.4375},">":[{“UIAElement”:{"@":{“name”:“No SIM”,“label”:“No SIM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/0",“x”:7.03125,“y”:0.6875,“width”:49.21875,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“3 of 3 Wi-Fi bars”,“label”:“3 of 3 Wi-Fi bars”,“value”:“applabs-execs”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/1",“x”:62.109375,“y”:0.6875,“width”:15.234375,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“5:35 PM”,“label”:“5:35 PM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/2",“x”:160.546875,“y”:0.6875,“width”:55.078125,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“100% battery power, On AC Power”,“label”:“100% battery power, On AC Power”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/3",“x”:290.625,“y”:0.6875,“width”:78.515625,“height”:23.4375},">":[]}}]}}]}}]}}}
2015-02-26 12:07:18:923 - info: [debug] [INST] 2015-02-26 12:05:52 +0000 Debug: Running system command #8: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:n…
2015-02-26 12:07:18:975 - info: [debug] Socket data received (7403 bytes)
2015-02-26 12:07:18:975 - info: [debug] Socket data being routed.
2015-02-26 12:07:18:975 - info: [debug] Got result from instruments: {“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0",“x”:0,“y”:24.125,“width”:375,“height”:642.1875},">":[{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”
2015-02-26 12:07:18:991 - info: [debug] Pushing command to appium work queue: “au.getElementByIndexPath(’/0/1/3/0’)”
2015-02-26 12:07:18:991 - info: [debug] Sending command to instruments: au.getElementByIndexPath(’/0/1/3/0’)
2015-02-26 12:07:19:885 - info: [debug] [INST] 2015-02-26 12:05:53 +0000 Debug: Got new command 8 from instruments: au.getElementByIndexPath(’/0/1/3/0’)
2015-02-26 12:07:19:894 - info: [debug] [INST] 2015-02-26 12:05:53 +0000 Debug: evaluating au.getElementByIndexPath(’/0/1/3/0’)
2015-02-26 12:07:19:905 - info: [debug] [INST] 2015-02-26 12:05:53 +0000 Debug: evaluation finished
2015-02-26 12:07:19:928 - info: [debug] [INST] 2015-02-26 12:05:53 +0000 Debug: Lookup returned [object UIATableCell] with the name “EmailAddress” (id: 2).
2015-02-26 12:07:19:938 - info: [debug] [INST] 2015-02-26 12:05:53 +0000 Debug: responding with:
2015-02-26 12:07:19:952 - info: [debug] [INST] 2015-02-26 12:05:53 +0000 Debug: Running system command #9: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“ELEMENT”:“2”}}…
2015-02-26 12:07:19:983 - info: [debug] Socket data received (38 bytes)
2015-02-26 12:07:19:983 - info: [debug] Socket data being routed.
2015-02-26 12:07:19:983 - info: [debug] Got result from instruments: {“status”:0,“value”:{“ELEMENT”:“2”}}
2015-02-26 12:07:19:983 - info: [debug] Responding to client with success: {“status”:0,“value”:{“ELEMENT”:“2”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:19:984 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element 200 2388.044 ms - 87 {“status”:0,“value”:{“ELEMENT”:“2”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:19:990 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/2/value {“id”:“2”,“value”:[“[email protected]”]}
2015-02-26 12:07:19:991 - info: [debug] Pushing command to appium work queue: “au.getElement(‘2’).setValueByType(‘[email protected]’)”
2015-02-26 12:07:19:991 - info: [debug] Sending command to instruments: au.getElement(‘2’).setValueByType(‘[email protected]’)
2015-02-26 12:07:20:992 - info: [debug] [INST] 2015-02-26 12:05:54 +0000 Debug: Got new command 9 from instruments: au.getElement(‘2’).setValueByType(‘[email protected]’)
2015-02-26 12:07:20:998 - info: [debug] [INST] 2015-02-26 12:05:54 +0000 Debug: evaluating au.getElement(‘2’).setValueByType(‘[email protected]’)
2015-02-26 12:07:21:010 - info: [debug] [INST] 2015-02-26 12:05:54 +0000 Debug: target.frontMostApp().elements()[1].elements()[3].elements()[0].tap()
2015-02-26 12:07:21:183 - info: [debug] Socket data received (25 bytes)
2015-02-26 12:07:21:183 - info: [debug] Socket data being routed.
2015-02-26 12:07:21:183 - info: [debug] Got result from instruments: {“status”:0,“value”:""}
2015-02-26 12:07:21:184 - info: [debug] Responding to client with success: {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:21:184 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/2/value 200 1193.897 ms - 74 {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:21:189 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element {“using”:“xpath”,“value”:"//UIAApplication[1]/UIAWindow[2]/UIATableView[1]/UIATableCell[2]"}
2015-02-26 12:07:21:190 - info: [debug] Waiting up to 120000ms for condition
2015-02-26 12:07:21:190 - info: [debug] Pushing command to appium work queue: “au.mainApp().getTreeForXML()”
2015-02-26 12:07:21:190 - info: [debug] Sending command to instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:21:198 - info: [debug] [INST] 2015-02-26 12:05:55 +0000 Debug: evaluation finished
2015-02-26 12:07:21:202 - info: [debug] [INST] 2015-02-26 12:05:55 +0000 Debug: responding with:
2015-02-26 12:07:21:204 - info: [debug] [INST] 2015-02-26 12:05:55 +0000 Debug: Running system command #10: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:""}…
2015-02-26 12:07:22:371 - info: [debug] [INST] 2015-02-26 12:05:56 +0000 Debug: Got new command 10 from instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:22:557 - info: [debug] [INST] 2015-02-26 12:05:56 +0000 Debug: evaluating au.mainApp().getTreeForXML()
2015-02-26 12:07:22:569 - info: [debug] Socket data received (8192 bytes)
2015-02-26 12:07:22:570 - info: [debug] Socket data received (6776 bytes)
2015-02-26 12:07:22:571 - info: [debug] Socket data being routed.
2015-02-26 12:07:22:571 - info: [debug] Got result from instruments: {“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0",“x”:0,“y”:24.125,“width”:375,“height”:642.1875},">":[{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”
2015-02-26 12:07:22:584 - info: [debug] Pushing command to appium work queue: “au.getElementByIndexPath(’/0/1/3/1’)”
2015-02-26 12:07:22:584 - info: [debug] Sending command to instruments: au.getElementByIndexPath(’/0/1/3/1’)
2015-02-26 12:07:22:607 - info: [debug] [INST] 2015-02-26 12:05:56 +0000 Debug: evaluation finished
2015-02-26 12:07:23:135 - info: [debug] [INST] 2015-02-26 12:05:56 +0000 Debug: responding with::true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/0",“x”:0,“y”:0,“width”:375,“height”:667},">":[]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIANavigationBar”:{"@":{“name”:“Sign In”,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0",“x”:0,“y”:24.125,“width”:375,“height”:51.5625},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0",“x”:0,“y”:0.6875,“width”:375,“height”:75},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0/0",“x”:0,“y”:75.6875,“width”:375,“height”:0.5859375},">":[]}}]}},{“UIAButton”:{"@":{“name”:“Cancel”,“label”:“Cancel”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/1",“x”:9.375,“y”:33.5,“width”:63.28125,“height”:35.15625},">":[]}},{“UIAButton”:{"@":{“name”:“Back”,“label”:“Back”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/2",“x”:9.375,“y”:37.6015625,“width”:24.609375,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“Sign In”,“label”:“Sign In”,“value”:“Sign In”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/3",“x”:148.828125,“y”:33.5,“width”:77.34375,“height”:31.640625},">":[]}}]}},{“UIAScrollView”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1",“x”:0,“y”:75.6875,“width”:375,“height”:590.625},">":[{“UIAWebView”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/0",“x”:0,“y”:75.6875,“width”:375,“height”:590.625},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/1",“x”:372.0703125,“y”:75.6875,“width”:2.9296875,“height”:590.625},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/2",“x”:0,“y”:663.3828125,“width”:375,“height”:2.9296875},">":[]}}]}},{“UIAStaticText”:{"@":{“name”:“Please sign in with your safeway.com account”,“label”:“Please sign in with your safeway.com account”,“value”:“Please sign in with your safeway.com account”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2",“x”:0,“y”:93.265625,“width”:375,“height”:46.875},">":[]}},{“UIATableView”:{"@":{“name”:null,“label”:null,“value”:“rows 1 to 2 of 2”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3",“x”:0,“y”:110.84375,“width”:375,“height”:365.625},">":[{“UIATableCell”:{"@":{“name”:“EmailAddress”,“label”:null,“value”:"",“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/0",“x”:0,“y”:151.859375,“width”:375,“height”:44.53125},">":[{“UIATextField”:{"@":{“name”:“EmailAddress”,“label”:“EmailAddress”,“value”:“Email Address”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/0/0",“x”:11.71875,“y”:154.203125,“width”:351.5625,“height”:35.15625},">":[]}}]}},{“UIATableCell”:{"@":{“name”:“Password”,“label”:null,“value”:"",“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/1",“x”:0,“y”:196.390625,“width”:375,“height”:44.53125},">":[{“UIASecureTextField”:{"@":{“name”:“Password”,“label”:“Password”,“value”:“Password”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/1/0",“x”:11.71875,“y”:198.734375,“width”:351.5625,“height”:35.15625},">":[]}}]}}]}},{“UIAButton”:{"@":{“name”:“Sign In”,“label”:“Sign In”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/4",“x”:9.375,“y”:263.1875,“width”:353.90625,“height”:41.015625},">":[]}},{“UIAButton”:{"@":{“name”:“Having Trouble Signing In?”,“label”:“Having Trouble Signing In?”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/5",“x”:10.546875,“y”:321.78125,“width”:353.90625,“height”:41.015625},">":[]}},{“UIAStaticText”:{"@":{“name”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“label”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“value”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/6",“x”:9.375,“y”:386.234375,“width”:356.25,“height”:52.734375},">":[]}},{“UIAButton”:{"@":{“name”:“Register”,“label”:“Register”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/7",“x”:9.375,“y”:450.6875,“width”:356.25,“height”:41.015625},">":[]}}]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIAKeyboard”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0",“x”:0,“y”:413.1875,“width”:375,“height”:253.125},">":[{“UIAKey”:{"@":{“name”:“q”,“label”:“q”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/0",“x”:0,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“w”,“label”:“w”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/1",“x”:37.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“e”,“label”:“e”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/2",“x”:75,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“r”,“label”:“r”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/3",“x”:112.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“t”,“label”:“t”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/4",“x”:150,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“y”,“label”:“y”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/5",“x”:187.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“u”,“label”:“u”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/6",“x”:225,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“i”,“label”:“i”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/7",“x”:262.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“o”,“label”:“o”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/8",“x”:300,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“p”,“label”:“p”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/9",“x”:337.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“a”,“label”:“a”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/10",“x”:18.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“s”,“label”:“s”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/11",“x”:56.25,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“d”,“label”:“d”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/12",“x”:93.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“f”,“label”:“f”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/13",“x”:131.25,“y”:489.359375,“width”:37.5,“height”:
2015-02-26 12:07:23:136 - info: [debug] [INST] 49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“g”,“label”:“g”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/14",“x”:168.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“h”,“label”:“h”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/15",“x”:206.25,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“j”,“label”:“j”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/16",“x”:243.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“k”,“label”:“k”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/17",“x”:281.25,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“l”,“label”:“l”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/18",“x”:318.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“shift”,“label”:“shift”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Triple-tap to enter caps lock”,“path”:"/0/2/0/19",“x”:0,“y”:552.640625,“width”:49.21875,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“z”,“label”:“z”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/20",“x”:56.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“x”,“label”:“x”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/21",“x”:93.75,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“c”,“label”:“c”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/22",“x”:131.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“v”,“label”:“v”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/23",“x”:168.75,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“b”,“label”:“b”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/24",“x”:206.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“n”,“label”:“n”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/25",“x”:243.75,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“m”,“label”:“m”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/26",“x”:281.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“Delete”,“label”:“Delete”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/27",“x”:325.78125,“y”:552.640625,“width”:49.21875,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“more, numbers”,“label”:“more, numbers”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/28",“x”:0,“y”:615.921875,“width”:46.875,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“Next keyboard”,“label”:“Next keyboard”,“value”:“Emoji”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Double-tap and hold, then drag up to select another keyboard”,“path”:"/0/2/0/29",“x”:46.875,“y”:615.921875,“width”:46.875,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“Dictate”,“label”:“Dictate”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:“Double tap to start dictation. Two finger double tap when finished”,“path”:"/0/2/0/30",“x”:93.75,“y”:615.921875,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“space”,“label”:“space”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/31",“x”:93.75,“y”:615.921875,“width”:93.75,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:"@",“label”:"@",“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/32",“x”:187.5,“y”:615.921875,“width”:46.875,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:".",“label”:".",“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/33",“x”:234.375,“y”:615.921875,“width”:46.875,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“Next”,“label”:“next”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/34",“x”:281.25,“y”:615.921875,“width”:93.75,“height”:49.21875},">":[]}}]}}]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIAStatusBar”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3/0",“x”:0,“y”:0.6875,“width”:375,“height”:23.4375},">":[{“UIAElement”:{"@":{“name”:“No SIM”,“label”:“No SIM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/0",“x”:7.03125,“y”:0.6875,“width”:49.21875,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“3 of 3 Wi-Fi bars”,“label”:“3 of 3 Wi-Fi bars”,“value”:“applabs-execs”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/1",“x”:62.109375,“y”:0.6875,“width”:15.234375,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“5:35 PM”,“label”:“5:35 PM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/2",“x”:160.546875,“y”:0.6875,“width”:55.078125,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“100% battery power, On AC Power”,“label”:“100% battery power, On AC Power”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/3",“x”:290.625,“y”:0.6875,“width”:78.515625,“height”:23.4375},">":[]}}]}}]}}]}}}
2015-02-26 12:07:23:153 - info: [debug] [INST] 2015-02-26 12:05:56 +0000 Debug: Running system command #11: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:n…
2015-02-26 12:07:23:606 - info: [debug] [INST] 2015-02-26 12:05:57 +0000 Debug: Got new command 11 from instruments: au.getElementByIndexPath(’/0/1/3/1’)
2015-02-26 12:07:23:609 - info: [debug] [INST] 2015-02-26 12:05:57 +0000 Debug: evaluating au.getElementByIndexPath(’/0/1/3/1’)
2015-02-26 12:07:23:612 - info: [debug] [INST] 2015-02-26 12:05:57 +0000 Debug: evaluation finished
2015-02-26 12:07:23:617 - info: [debug] [INST] 2015-02-26 12:05:57 +0000 Debug: Lookup returned [object UIATableCell] with the name “Password” (id: 3).
2015-02-26 12:07:23:617 - info: [debug] [INST] 2015-02-26 12:05:57 +0000 Debug: responding with:
2015-02-26 12:07:23:621 - info: [debug] [INST] 2015-02-26 12:05:57 +0000 Debug: Running system command #12: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“ELEMENT”:“3”}}…
2015-02-26 12:07:23:668 - info: [debug] Socket data received (38 bytes)
2015-02-26 12:07:23:669 - info: [debug] Socket data being routed.
2015-02-26 12:07:23:669 - info: [debug] Got result from instruments: {“status”:0,“value”:{“ELEMENT”:“3”}}
2015-02-26 12:07:23:669 - info: [debug] Responding to client with success: {“status”:0,“value”:{“ELEMENT”:“3”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:23:669 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element 200 2480.210 ms - 87 {“status”:0,“value”:{“ELEMENT”:“3”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:23:675 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/3/value {“id”:“3”,“value”:[“testpwd1”]}
2015-02-26 12:07:23:675 - info: [debug] Pushing command to appium work queue: “au.getElement(‘3’).setValueByType(‘testpwd1’)”
2015-02-26 12:07:23:676 - info: [debug] Sending command to instruments: au.getElement(‘3’).setValueByType(‘testpwd1’)
2015-02-26 12:07:24:697 - info: [debug] [INST] 2015-02-26 12:05:58 +0000 Debug: Got new command 12 from instruments: au.getElement(‘3’).setValueByType(‘testpwd1’)
2015-02-26 12:07:24:700 - info: [debug] [INST] 2015-02-26 12:05:58 +0000 Debug: evaluating au.getElement(‘3’).setValueByType(‘testpwd1’)
2015-02-26 12:07:24:703 - info: [debug] [INST] 2015-02-26 12:05:58 +0000 Debug: target.frontMostApp().elements()[1].elements()[3].elements()[1].tap()
2015-02-26 12:07:24:901 - info: [debug] Socket data received (25 bytes)
2015-02-26 12:07:24:901 - info: [debug] Socket data being routed.
2015-02-26 12:07:24:902 - info: [debug] Got result from instruments: {“status”:0,“value”:""}
2015-02-26 12:07:24:902 - info: [debug] Responding to client with success: {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:24:902 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/3/value 200 1227.416 ms - 74 {“status”:0,“value”:"",“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:24:909 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element {“using”:“xpath”,“value”:"//UIAApplication[1]/UIAWindow[2]/UIAButton[1]"}
2015-02-26 12:07:24:909 - info: [debug] Waiting up to 120000ms for condition
2015-02-26 12:07:24:910 - info: [debug] Pushing command to appium work queue: “au.mainApp().getTreeForXML()”
2015-02-26 12:07:24:910 - info: [debug] Sending command to instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:24:919 - info: [debug] [INST] 2015-02-26 12:05:58 +0000 Debug: evaluation finished
2015-02-26 12:07:24:921 - info: [debug] [INST] 2015-02-26 12:05:58 +0000 Debug: responding with:
2015-02-26 12:07:24:924 - info: [debug] [INST] 2015-02-26 12:05:58 +0000 Debug: Running system command #13: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:""}…
2015-02-26 12:07:25:811 - info: [debug] [INST] 2015-02-26 12:05:59 +0000 Debug: Got new command 13 from instruments: au.mainApp().getTreeForXML()
2015-02-26 12:07:25:814 - info: [debug] [INST] 2015-02-26 12:05:59 +0000 Debug: evaluating au.mainApp().getTreeForXML()
2015-02-26 12:07:26:229 - info: [debug] [INST] 2015-02-26 12:06:00 +0000 Debug: evaluation finished
2015-02-26 12:07:26:238 - info: [debug] [INST] 2015-02-26 12:06:00 +0000 Debug: responding with::true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/0",“x”:0,“y”:0,“width”:375,“height”:667},">":[]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIANavigationBar”:{"@":{“name”:“Sign In”,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0",“x”:0,“y”:24.125,“width”:375,“height”:51.5625},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0",“x”:0,“y”:0.6875,“width”:375,“height”:75},">":[{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/0/0",“x”:0,“y”:75.6875,“width”:375,“height”:0.5859375},">":[]}}]}},{“UIAButton”:{"@":{“name”:“Cancel”,“label”:“Cancel”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/1",“x”:9.375,“y”:33.5,“width”:63.28125,“height”:35.15625},">":[]}},{“UIAButton”:{"@":{“name”:“Back”,“label”:“Back”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/0/2",“x”:9.375,“y”:37.6015625,“width”:24.609375,“height”:24.609375},">":[]}},{“UIAStaticText”:{"@":{“name”:“Sign In”,“label”:“Sign In”,“value”:“Sign In”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/0/3",“x”:148.828125,“y”:33.5,“width”:77.34375,“height”:31.640625},">":[]}}]}},{“UIAScrollView”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1",“x”:0,“y”:75.6875,“width”:375,“height”:590.625},">":[{“UIAWebView”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/0",“x”:0,“y”:75.6875,“width”:375,“height”:590.625},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/1",“x”:372.0703125,“y”:75.6875,“width”:2.9296875,“height”:590.625},">":[]}},{“UIAImage”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/1/2",“x”:0,“y”:663.3828125,“width”:375,“height”:2.9296875},">":[]}}]}},{“UIAStaticText”:{"@":{“name”:“Please sign in with your safeway.com account”,“label”:“Please sign in with your safeway.com account”,“value”:“Please sign in with your safeway.com account”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/2",“x”:0,“y”:93.265625,“width”:375,“height”:46.875},">":[]}},{“UIATableView”:{"@":{“name”:null,“label”:null,“value”:“rows 1 to 2 of 2”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3",“x”:0,“y”:110.84375,“width”:375,“height”:365.625},">":[{“UIATableCell”:{"@":{“name”:“EmailAddress”,“label”:null,“value”:"",“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/0",“x”:0,“y”:151.859375,“width”:375,“height”:44.53125},">":[{“UIATextField”:{"@":{“name”:“EmailAddress”,“label”:“EmailAddress”,“value”:“Email Address”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/0/0",“x”:11.71875,“y”:154.203125,“width”:351.5625,“height”:35.15625},">":[]}}]}},{“UIATableCell”:{"@":{“name”:“Password”,“label”:null,“value”:"",“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/1",“x”:0,“y”:196.390625,“width”:375,“height”:44.53125},">":[{“UIASecureTextField”:{"@":{“name”:“Password”,“label”:“Password”,“value”:“Password”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/3/1/0",“x”:11.71875,“y”:198.734375,“width”:351.5625,“height”:35.15625},">":[]}}]}}]}},{“UIAButton”:{"@":{“name”:“Sign In”,“label”:“Sign In”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/4",“x”:9.375,“y”:263.1875,“width”:353.90625,“height”:41.015625},">":[]}},{“UIAButton”:{"@":{“name”:“Having Trouble Signing In?”,“label”:“Having Trouble Signing In?”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/5",“x”:10.546875,“y”:321.78125,“width”:353.90625,“height”:41.015625},">":[]}},{“UIAStaticText”:{"@":{“name”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“label”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“value”:“Don’t have a Safeway account? Join the savings revolution and sign up now!”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/1/6",“x”:9.375,“y”:386.234375,“width”:356.25,“height”:52.734375},">":[]}},{“UIAButton”:{"@":{“name”:“Register”,“label”:“Register”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:null,“path”:"/0/1/7",“x”:9.375,“y”:450.6875,“width”:356.25,“height”:41.015625},">":[]}}]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIAKeyboard”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0",“x”:0,“y”:413.1875,“width”:375,“height”:253.125},">":[{“UIAKey”:{"@":{“name”:“q”,“label”:“q”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/0",“x”:0,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“w”,“label”:“w”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/1",“x”:37.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“e”,“label”:“e”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/2",“x”:75,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“r”,“label”:“r”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/3",“x”:112.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“t”,“label”:“t”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/4",“x”:150,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“y”,“label”:“y”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/5",“x”:187.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“u”,“label”:“u”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/6",“x”:225,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“i”,“label”:“i”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/7",“x”:262.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“o”,“label”:“o”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/8",“x”:300,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“p”,“label”:“p”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/9",“x”:337.5,“y”:426.078125,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“a”,“label”:“a”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/10",“x”:18.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“s”,“label”:“s”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/11",“x”:56.25,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“d”,“label”:“d”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/12",“x”:93.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“f”,“label”:“f”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/13",“x”:131.25,“y”:489.359375,“width”:37.5,“height”:
2015-02-26 12:07:26:239 - info: [debug] [INST] 49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“g”,“label”:“g”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/14",“x”:168.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“h”,“label”:“h”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/15",“x”:206.25,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“j”,“label”:“j”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/16",“x”:243.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“k”,“label”:“k”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/17",“x”:281.25,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“l”,“label”:“l”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/18",“x”:318.75,“y”:489.359375,“width”:37.5,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“shift”,“label”:“shift”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Triple-tap to enter caps lock”,“path”:"/0/2/0/19",“x”:0,“y”:552.640625,“width”:49.21875,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“z”,“label”:“z”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/20",“x”:56.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“x”,“label”:“x”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/21",“x”:93.75,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“c”,“label”:“c”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/22",“x”:131.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“v”,“label”:“v”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/23",“x”:168.75,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“b”,“label”:“b”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/24",“x”:206.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“n”,“label”:“n”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/25",“x”:243.75,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“m”,“label”:“m”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/26",“x”:281.25,“y”:552.640625,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“Delete”,“label”:“Delete”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/27",“x”:325.78125,“y”:552.640625,“width”:49.21875,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“more, numbers”,“label”:“more, numbers”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/28",“x”:0,“y”:615.921875,“width”:93.75,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“Next keyboard”,“label”:“Next keyboard”,“value”:“Emoji”,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:“Double-tap and hold, then drag up to select another keyboard”,“path”:"/0/2/0/29",“x”:46.875,“y”:615.921875,“width”:46.875,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“Dictate”,“label”:“Dictate”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:false,“hint”:“Double tap to start dictation. Two finger double tap when finished”,“path”:"/0/2/0/30",“x”:93.75,“y”:615.921875,“width”:37.5,“height”:49.21875},">":[]}},{“UIAKey”:{"@":{“name”:“space”,“label”:“space”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/31",“x”:93.75,“y”:615.921875,“width”:187.5,“height”:49.21875},">":[]}},{“UIAButton”:{"@":{“name”:“Done”,“label”:“done”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/2/0/32",“x”:281.25,“y”:615.921875,“width”:93.75,“height”:49.21875},">":[]}}]}}]}},{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3",“x”:0,“y”:0.6875,“width”:375,“height”:665.625},">":[{“UIAStatusBar”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0/3/0",“x”:0,“y”:0.6875,“width”:375,“height”:23.4375},">":[{“UIAElement”:{"@":{“name”:“No SIM”,“label”:“No SIM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/0",“x”:7.03125,“y”:0.6875,“width”:49.21875,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“3 of 3 Wi-Fi bars”,“label”:“3 of 3 Wi-Fi bars”,“value”:“applabs-execs”,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/1",“x”:62.109375,“y”:0.6875,“width”:15.234375,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“5:36 PM”,“label”:“5:36 PM”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/2",“x”:160.546875,“y”:0.6875,“width”:55.078125,“height”:23.4375},">":[]}},{“UIAElement”:{"@":{“name”:“100% battery power, On AC Power”,“label”:“100% battery power, On AC Power”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:“Swipe down with three fingers to reveal the notification center., Swipe up with three fingers to reveal the control center, Double-tap to scroll to top”,“path”:"/0/3/0/3",“x”:290.625,“y”:0.6875,“width”:78.515625,“height”:23.4375},">":[]}}]}}]}}]}}}
2015-02-26 12:07:26:247 - info: [debug] [INST] 2015-02-26 12:06:00 +0000 Debug: Running system command #14: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:n…
2015-02-26 12:07:26:286 - info: [debug] Socket data received (8192 bytes)
2015-02-26 12:07:26:287 - info: [debug] Socket data received (6364 bytes)
2015-02-26 12:07:26:288 - info: [debug] Socket data being routed.
2015-02-26 12:07:26:288 - info: [debug] Got result from instruments: {“status”:0,“value”:{“UIAApplication”:{"@":{“name”:“Safeway”,“label”:“Safeway”,“value”:null,“dom”:null,“enabled”:true,“valid”:true,“visible”:true,“hint”:null,“path”:"/0",“x”:0,“y”:24.125,“width”:375,“height”:642.1875},">":[{“UIAWindow”:{"@":{“name”:null,“label”:null,“value”:null,“dom”:null,“enabled”
2015-02-26 12:07:26:300 - info: [debug] Pushing command to appium work queue: “au.getElementByIndexPath(’/0/1/4’)”
2015-02-26 12:07:26:300 - info: [debug] Sending command to instruments: au.getElementByIndexPath(’/0/1/4’)
2015-02-26 12:07:27:328 - info: [debug] [INST] 2015-02-26 12:06:01 +0000 Debug: Got new command 14 from instruments: au.getElementByIndexPath(’/0/1/4’)
2015-02-26 12:07:27:332 - info: [debug] [INST] 2015-02-26 12:06:01 +0000 Debug: evaluating au.getElementByIndexPath(’/0/1/4’)
2015-02-26 12:07:27:336 - info: [debug] [INST] 2015-02-26 12:06:01 +0000 Debug: evaluation finished
2015-02-26 12:07:27:338 - info: [debug] [INST] 2015-02-26 12:06:01 +0000 Debug: Lookup returned [object UIAButton] with the name “Sign In” (id: 4).
2015-02-26 12:07:27:342 - info: [debug] [INST] 2015-02-26 12:06:01 +0000 Debug: responding with:
2015-02-26 12:07:27:346 - info: [debug] [INST] 2015-02-26 12:06:01 +0000 Debug: Running system command #15: /Applications/Appium.app/Contents/Resources/node/bin/node /Applications/Appium.app/Contents/Resources/node_modules/appium/node_modules/appium-uiauto/bin/command-proxy-client.js /tmp/instruments_sock 2,{“status”:0,“value”:{“ELEMENT”:“4”}}…
2015-02-26 12:07:27:390 - info: [debug] Socket data received (38 bytes)
2015-02-26 12:07:27:391 - info: [debug] Socket data being routed.
2015-02-26 12:07:27:391 - info: [debug] Got result from instruments: {“status”:0,“value”:{“ELEMENT”:“4”}}
2015-02-26 12:07:27:391 - info: [debug] Responding to client with success: {“status”:0,“value”:{“ELEMENT”:“4”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:27:391 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element 200 2483.231 ms - 87 {“status”:0,“value”:{“ELEMENT”:“4”},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:07:27:397 - info: --> POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/4/submit {“id”:“4”}
2015-02-26 12:07:27:399 - info: [debug] Responding to client that a method is not implemented in this context
2015-02-26 12:07:27:400 - info: <-- POST /wd/hub/session/95e58672-2be8-4724-b550-43bbece0249d/element/4/submit 501 2.228 ms - 159
2015-02-26 12:08:07:608 - info: --> GET /wd/hub/status {}
2015-02-26 12:08:07:609 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:08:07:609 - info: <-- GET /wd/hub/status 200 0.940 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:08:55:126 - info: [IOS_SYSLOG_ROW ] Feb 26 17:37:29 adurgams-iPhone mstreamd[598] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:08:55:127 - info: [IOS_SYSLOG_ROW ] Feb 26 17:37:29 adurgams-iPhone mstreamd[598] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:08:55:130 - info: [IOS_SYSLOG_ROW ] Feb 26 17:37:29 adurgams-iPhone mstreamd[598] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x10024b420>: Shared Streams daemon has shut down.
2015-02-26 12:08:55:138 - info: [IOS_SYSLOG_ROW ] Feb 26 17:37:29 adurgams-iPhone mstreamd[598] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:08:55:202 - info: [IOS_SYSLOG_ROW ] Feb 26 17:37:29 adurgams-iPhone mstreamd[600] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:08:55:283 - info: [IOS_SYSLOG_ROW ] Feb 26 17:37:29 adurgams-iPhone mstreamd[600] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:09:10:846 - info: --> GET /wd/hub/status {}
2015-02-26 12:09:10:846 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:09:10:847 - info: <-- GET /wd/hub/status 200 1.005 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:09:12:704 - info: [IOS_SYSLOG_ROW ] Feb 26 17:37:46 adurgams-iPhone routined[27] : CoreLocation: </System/Library/LocationBundles/Routine.bundle> woken up by Core Location
2015-02-26 12:09:35:318 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:09 adurgams-iPhone mstreamd[600] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:09:35:319 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:09 adurgams-iPhone mstreamd[600] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:09:35:322 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:09 adurgams-iPhone mstreamd[600] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x147d31600>: Shared Streams daemon has shut down.
2015-02-26 12:09:35:329 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:09 adurgams-iPhone mstreamd[600] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:09:35:401 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:09 adurgams-iPhone mstreamd[601] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:09:35:481 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:09 adurgams-iPhone mstreamd[601] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:10:11:849 - info: --> GET /wd/hub/status {}
2015-02-26 12:10:11:850 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:10:11:850 - info: <-- GET /wd/hub/status 200 0.742 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:10:15:517 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:49 adurgams-iPhone mstreamd[601] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:10:15:519 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:49 adurgams-iPhone mstreamd[601] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:10:15:522 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:49 adurgams-iPhone mstreamd[601] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x144530350>: Shared Streams daemon has shut down.
2015-02-26 12:10:15:529 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:49 adurgams-iPhone mstreamd[601] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:10:15:595 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:49 adurgams-iPhone mstreamd[602] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:10:15:671 - info: [IOS_SYSLOG_ROW ] Feb 26 17:38:49 adurgams-iPhone mstreamd[602] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:10:28:232 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:02 adurgams-iPhone syncdefaultsd[599] : (Note ) marked “com.me.keyvalueservice” topic as “ignored” on (null)
2015-02-26 12:10:28:338 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:02 adurgams-iPhone syncdefaultsd[603] : (Note ) SYDAlwaysOnAccount: no account (null)
2015-02-26 12:10:28:345 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:02 adurgams-iPhone syncdefaultsd[603] : (Note ) SYDAccount: no account
2015-02-26 12:10:28:352 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:02 adurgams-iPhone syncdefaultsd[603] : (Note ) SYDPIMAccount: no account (null)
2015-02-26 12:10:55:705 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:29 adurgams-iPhone mstreamd[602] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:10:55:708 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:29 adurgams-iPhone mstreamd[602] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:10:55:710 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:29 adurgams-iPhone mstreamd[602] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x14461d9e0>: Shared Streams daemon has shut down.
2015-02-26 12:10:55:717 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:29 adurgams-iPhone mstreamd[602] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:10:55:782 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:29 adurgams-iPhone mstreamd[604] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:10:55:862 - info: [IOS_SYSLOG_ROW ] Feb 26 17:39:29 adurgams-iPhone mstreamd[604] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:11:12:871 - info: --> GET /wd/hub/status {}
2015-02-26 12:11:12:871 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:11:12:872 - info: <-- GET /wd/hub/status 200 1.328 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:11:35:902 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:09 adurgams-iPhone mstreamd[604] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:11:35:902 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:09 adurgams-iPhone mstreamd[604] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:11:35:905 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:09 adurgams-iPhone mstreamd[604] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x15c677c70>: Shared Streams daemon has shut down.
2015-02-26 12:11:35:913 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:09 adurgams-iPhone mstreamd[604] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:11:35:981 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:09 adurgams-iPhone mstreamd[605] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:11:36:062 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:09 adurgams-iPhone mstreamd[605] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:12:16:096 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:50 adurgams-iPhone mstreamd[605] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:12:16:097 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:50 adurgams-iPhone mstreamd[605] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:12:16:101 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:50 adurgams-iPhone mstreamd[605] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x14e62cf60>: Shared Streams daemon has shut down.
2015-02-26 12:12:16:106 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:50 adurgams-iPhone mstreamd[605] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:12:16:172 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:50 adurgams-iPhone mstreamd[606] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:12:16:251 - info: [IOS_SYSLOG_ROW ] Feb 26 17:40:50 adurgams-iPhone mstreamd[606] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:12:21:417 - info: --> GET /wd/hub/status {}
2015-02-26 12:12:21:417 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:12:21:417 - info: <-- GET /wd/hub/status 200 0.739 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:12:28:394 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:02 adurgams-iPhone syncdefaultsd[603] : (Note ) marked “com.me.keyvalueservice” topic as “ignored” on (null)
2015-02-26 12:12:28:497 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:02 adurgams-iPhone syncdefaultsd[607] : (Note ) SYDAlwaysOnAccount: no account (null)
2015-02-26 12:12:28:505 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:02 adurgams-iPhone syncdefaultsd[607] : (Note ) SYDAccount: no account
2015-02-26 12:12:28:512 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:02 adurgams-iPhone syncdefaultsd[607] : (Note ) SYDPIMAccount: no account (null)
2015-02-26 12:12:56:286 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:30 adurgams-iPhone mstreamd[606] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:12:56:287 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:30 adurgams-iPhone mstreamd[606] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:12:56:290 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:30 adurgams-iPhone mstreamd[606] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x147d1bee0>: Shared Streams daemon has shut down.
2015-02-26 12:12:56:297 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:30 adurgams-iPhone mstreamd[606] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:12:56:362 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:30 adurgams-iPhone mstreamd[608] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:12:56:444 - info: [IOS_SYSLOG_ROW ] Feb 26 17:41:30 adurgams-iPhone mstreamd[608] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:13:31:415 - info: --> GET /wd/hub/status {}
2015-02-26 12:13:31:416 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:13:31:416 - info: <-- GET /wd/hub/status 200 0.741 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:13:36:479 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:10 adurgams-iPhone mstreamd[608] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:13:36:480 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:10 adurgams-iPhone mstreamd[608] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:13:36:484 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:10 adurgams-iPhone mstreamd[608] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x15e63cc70>: Shared Streams daemon has shut down.
2015-02-26 12:13:36:491 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:10 adurgams-iPhone mstreamd[608] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:13:36:561 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:10 adurgams-iPhone mstreamd[609] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:13:36:642 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:10 adurgams-iPhone mstreamd[609] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:14:12:691 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:46 adurgams-iPhone routined[27] : CoreLocation: </System/Library/LocationBundles/Routine.bundle> woken up by Core Location
2015-02-26 12:14:16:677 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:50 adurgams-iPhone mstreamd[609] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:14:16:678 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:50 adurgams-iPhone mstreamd[609] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:14:16:680 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:50 adurgams-iPhone mstreamd[609] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x13dd4d0e0>: Shared Streams daemon has shut down.
2015-02-26 12:14:16:682 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:50 adurgams-iPhone mstreamd[609] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:14:16:753 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:50 adurgams-iPhone mstreamd[610] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:14:16:834 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:50 adurgams-iPhone mstreamd[610] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:14:21:150 - info: [IOS_SYSLOG_ROW ] Feb 26 17:42:55 adurgams-iPhone ubd[611] : iCloud Documents through ubd is deactivated, using bird instead (Sep 12 2014 : 14:54:27).
2015-02-26 12:14:28:553 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:02 adurgams-iPhone syncdefaultsd[607] : (Note ) marked “com.me.keyvalueservice” topic as “ignored” on (null)
2015-02-26 12:14:28:653 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:02 adurgams-iPhone syncdefaultsd[612] : (Note ) SYDAlwaysOnAccount: no account (null)
2015-02-26 12:14:28:660 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:02 adurgams-iPhone syncdefaultsd[612] : (Note ) SYDAccount: no account
2015-02-26 12:14:28:667 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:02 adurgams-iPhone syncdefaultsd[612] : (Note ) SYDPIMAccount: no account (null)
2015-02-26 12:14:34:412 - info: --> GET /wd/hub/status {}
2015-02-26 12:14:34:412 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:14:34:413 - info: <-- GET /wd/hub/status 200 0.987 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:14:56:869 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:30 adurgams-iPhone mstreamd[610] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:14:56:870 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:30 adurgams-iPhone mstreamd[610] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:14:56:880 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:30 adurgams-iPhone mstreamd[610] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x147e69f60>: Shared Streams daemon has shut down.
2015-02-26 12:14:56:882 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:30 adurgams-iPhone mstreamd[610] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:14:56:950 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:30 adurgams-iPhone mstreamd[613] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:14:57:031 - info: [IOS_SYSLOG_ROW ] Feb 26 17:43:30 adurgams-iPhone mstreamd[613] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:15:37:069 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:10 adurgams-iPhone mstreamd[613] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:15:37:069 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:10 adurgams-iPhone mstreamd[613] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:15:37:083 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:10 adurgams-iPhone mstreamd[613] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x13763e000>: Shared Streams daemon has shut down.
2015-02-26 12:15:37:083 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:10 adurgams-iPhone mstreamd[613] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:15:37:158 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:11 adurgams-iPhone mstreamd[615] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:15:37:234 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:11 adurgams-iPhone mstreamd[615] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:15:38:409 - info: --> GET /wd/hub/status {}
2015-02-26 12:15:38:409 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:15:38:409 - info: <-- GET /wd/hub/status 200 0.701 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:16:17:269 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:51 adurgams-iPhone mstreamd[615] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:16:17:270 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:51 adurgams-iPhone mstreamd[615] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:16:17:273 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:51 adurgams-iPhone mstreamd[615] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x13fd30600>: Shared Streams daemon has shut down.
2015-02-26 12:16:17:280 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:51 adurgams-iPhone mstreamd[615] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:16:17:344 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:51 adurgams-iPhone mstreamd[616] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:16:17:424 - info: [IOS_SYSLOG_ROW ] Feb 26 17:44:51 adurgams-iPhone mstreamd[616] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:16:28:708 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:02 adurgams-iPhone syncdefaultsd[612] : (Note ) marked “com.me.keyvalueservice” topic as “ignored” on (null)
2015-02-26 12:16:28:819 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:02 adurgams-iPhone syncdefaultsd[617] : (Note ) SYDAlwaysOnAccount: no account (null)
2015-02-26 12:16:28:826 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:02 adurgams-iPhone syncdefaultsd[617] : (Note ) SYDAccount: no account
2015-02-26 12:16:28:833 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:02 adurgams-iPhone syncdefaultsd[617] : (Note ) SYDPIMAccount: no account (null)
2015-02-26 12:16:42:299 - info: --> GET /wd/hub/status {}
2015-02-26 12:16:42:300 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:16:42:300 - info: <-- GET /wd/hub/status 200 0.958 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:16:57:458 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:31 adurgams-iPhone mstreamd[616] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:16:57:461 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:31 adurgams-iPhone mstreamd[616] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:16:57:464 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:31 adurgams-iPhone mstreamd[616] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x12756c1b0>: Shared Streams daemon has shut down.
2015-02-26 12:16:57:470 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:31 adurgams-iPhone mstreamd[616] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:16:57:562 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:31 adurgams-iPhone mstreamd[618] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:16:57:655 - info: [IOS_SYSLOG_ROW ] Feb 26 17:45:31 adurgams-iPhone mstreamd[618] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:17:37:695 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:11 adurgams-iPhone mstreamd[618] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:17:37:698 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:11 adurgams-iPhone mstreamd[618] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:17:37:702 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:11 adurgams-iPhone mstreamd[618] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x154e55ee0>: Shared Streams daemon has shut down.
2015-02-26 12:17:37:711 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:11 adurgams-iPhone mstreamd[618] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:17:37:776 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:11 adurgams-iPhone mstreamd[619] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:17:37:850 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:11 adurgams-iPhone mstreamd[619] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:17:50:297 - info: --> GET /wd/hub/status {}
2015-02-26 12:17:50:297 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:17:50:298 - info: <-- GET /wd/hub/status 200 0.719 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:18:17:880 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:51 adurgams-iPhone mstreamd[619] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:18:17:881 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:51 adurgams-iPhone mstreamd[619] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:18:17:884 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:51 adurgams-iPhone mstreamd[619] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x15e663bd0>: Shared Streams daemon has shut down.
2015-02-26 12:18:17:893 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:51 adurgams-iPhone mstreamd[619] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:18:17:956 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:51 adurgams-iPhone mstreamd[620] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:18:18:055 - info: [IOS_SYSLOG_ROW ] Feb 26 17:46:51 adurgams-iPhone mstreamd[620] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:18:28:858 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:02 adurgams-iPhone syncdefaultsd[617] : (Note ) marked “com.me.keyvalueservice” topic as “ignored” on (null)
2015-02-26 12:18:28:963 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:02 adurgams-iPhone syncdefaultsd[621] : (Note ) SYDAlwaysOnAccount: no account (null)
2015-02-26 12:18:28:971 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:02 adurgams-iPhone syncdefaultsd[621] : (Note ) SYDAccount: no account
2015-02-26 12:18:28:979 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:02 adurgams-iPhone syncdefaultsd[621] : (Note ) SYDPIMAccount: no account (null)
2015-02-26 12:18:54:296 - info: --> GET /wd/hub/status {}
2015-02-26 12:18:54:296 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:18:54:297 - info: <-- GET /wd/hub/status 200 0.702 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:18:58:101 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:32 adurgams-iPhone mstreamd[620] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:18:58:102 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:32 adurgams-iPhone mstreamd[620] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:18:58:112 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:32 adurgams-iPhone mstreamd[620] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x14e628390>: Shared Streams daemon has shut down.
2015-02-26 12:18:58:116 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:32 adurgams-iPhone mstreamd[620] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:18:58:182 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:32 adurgams-iPhone mstreamd[622] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:18:58:263 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:32 adurgams-iPhone mstreamd[622] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:19:12:685 - info: [IOS_SYSLOG_ROW ] Feb 26 17:47:46 adurgams-iPhone routined[27] : CoreLocation: </System/Library/LocationBundles/Routine.bundle> woken up by Core Location
2015-02-26 12:19:38:299 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:12 adurgams-iPhone mstreamd[622] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:19:38:300 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:12 adurgams-iPhone mstreamd[622] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:19:38:302 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:12 adurgams-iPhone mstreamd[622] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x14e67ac40>: Shared Streams daemon has shut down.
2015-02-26 12:19:38:309 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:12 adurgams-iPhone mstreamd[622] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:19:38:381 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:12 adurgams-iPhone mstreamd[623] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:19:38:459 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:12 adurgams-iPhone mstreamd[623] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:20:03:397 - info: --> GET /wd/hub/status {}
2015-02-26 12:20:03:397 - info: [debug] Responding to client with success: {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:20:03:398 - info: <-- GET /wd/hub/status 200 1.138 ms - 178 {“status”:0,“value”:{“build”:{“version”:“1.3.4”,“revision”:“c8c79a85fbd6870cd6fc3d66d038a115ebe22efe”},“isShuttingDown”:false},“sessionId”:“95e58672-2be8-4724-b550-43bbece0249d”}
2015-02-26 12:20:18:506 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:52 adurgams-iPhone mstreamd[623] : (Note ) mstreamd: Not monitoring for external power.
2015-02-26 12:20:18:509 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:52 adurgams-iPhone mstreamd[623] : (Note ) PS: Media stream daemon stopping.
2015-02-26 12:20:18:521 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:52 adurgams-iPhone mstreamd[623] : (Note ) AS: <MSIOSAlbumSharingDaemon: 0x13ee68ee0>: Shared Streams daemon has shut down.
2015-02-26 12:20:18:522 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:52 adurgams-iPhone mstreamd[623] : (Warn ) mstreamd: mstreamd shutting down.
2015-02-26 12:20:18:622 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:52 adurgams-iPhone mstreamd[624] : (Note ) mstreamd: mstreamd starting up.
2015-02-26 12:20:18:700 - info: [IOS_SYSLOG_ROW ] Feb 26 17:48:52 adurgams-iPhone mstreamd[624] : (Note ) PS: Media stream daemon starting…
2015-02-26 12:20:29:021 - info: [IOS_SYSLOG_ROW ] Feb 26 17:49:02 adurgams-iPhone syncdefaultsd[621] : (Note ) marked “com.me.keyvalueservice” topic as “ignored” on (null)
2015-02-26 12:20:29:147 - info: [IOS_SYSLOG_ROW ] Feb 26 17:49:03 adurgams-iPhone syncdefaultsd[625] : (Note ) SYDAlwaysOnAccount: no account (null)
2015-02-26 12:20:29:154 - info: [IOS_SYSLOG_ROW ] Feb 26 17:49:03 adurgams-iPhone syncdefaultsd[625] : (Note ) SYDAccount: no account
2015-02-26 12:20:29:161 - info: [IOS_SYSLOG_ROW ] Feb 26 17:49:03 adurgams-iPhone syncdefaultsd[625] : (Note ) SYDPIMAccount: no account (null)
I am blocked here , can anyone support me in this.