-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add terribly insecure cmd: executor for ISETool etc #63
base: master
Are you sure you want to change the base?
Conversation
@sleekweasel Thanks, looks nice. But I think we might have a simpler solution for your problem. As I understand you need to retrieve log files from app that is running/installed on device. So I can back port it into winphonedriver and you would be able to download file. From this point there are two options:
To do this I just need to better understand what isolated storage do you need to access to. There are, I believe, three types or folders: "Local", "Roaming" and "Temp". Do you need to get files from "Local" only or from other folders too? What do you think about this approach and which option would you prefer? |
I need the data on the host running the tests, so that would be option 2, please. And yes, I think I only need local storage. I'm also wanting to capture the Outerdriver's logfile for the duration of each given test: for analysing inefficiencies in tests' queries, and the ability to kill the emulator when convenient. I had planned to structure that around this 'cmd:' trick, but looks like I'll need something more elegant. :) |
i think the logging part might be done by implementing |
Looking at webdriver and appium commands it seems that appium's |
@sleekweasel check #64 This PR adds implementation for |
Thanks for doing this, and sorry it's taken me ages to get back - log file retrieval is kind-of a luxury item compared to just getting tests written at the moment! I will obviously use this once we bump our version. :) |
@sleekweasel no problem, does it wok for your case? I asking because the logs are sometimes/usually stored in |
@sleekweasel any updates on logs retrieval? |
Hi. Not yet, sorry - we haven't bumped our version and I'm buried in iOS stuff at the moment. :/ |
My first C#!
I know this is horribly insecure, but we're using it for retrieving logs from the phone when the tests are running on a different host: ssh can't access the desktop processes.