Search found 6 matches

by Mague
Fri Sep 11, 2015 2:51 am
Forum: General Questions
Topic: How to open a Windows VM with password under VirtualBox?
Replies: 2
Views: 1436

How to open a Windows VM with password under VirtualBox?

Hi everyone, I try to record and replay a simple test that 1- Open VirtualBox 2- Select a VM (Windows 7 localized in FR) 3- Enter the password for Windows 4- Shut down windows VM 5- Close VirtualBox The scenario recording (using instant recording or Desktop record) is fine. (You can take a look on i...
by Mague
Fri Sep 04, 2015 6:05 pm
Forum: General Questions
Topic: How to store screenshot in a specific folder?
Replies: 8
Views: 4233

Re: How to store screenshot in a specific folder?

Hi everyone, thanks for all your answer. I need to take screenshots of a mobile app and store them in a specific folder with a specific name because we perform localization QA tests. But it's fine, I found a solution: //Take a screenshot of a specific element Bitmap image = Imaging.CaptureImageAuto(...
by Mague
Tue Sep 01, 2015 8:05 pm
Forum: General Questions
Topic: How to store screenshot in a specific folder?
Replies: 8
Views: 4233

How to store screenshot in a specific folder?

Hi everyone,

I would like store active view screenshots in a specific folder and not in the report folder as currently.
Someone will have an idea on how to do this?

Thank you

Mague
by Mague
Tue Sep 01, 2015 6:28 pm
Forum: Mobile Testing
Topic: Is it possible to automatically uninstall Android App?
Replies: 6
Views: 4733

Re: Is it possible to automatically uninstall Android App?

Hi Lucian, exactly. Now, it's work perfectly. :D String pathToAdb = "<my path To adb.exe >"; String appPackageName= "<my app name>"; System.Diagnostics.Process adbClearProcess = new System.Diagnostics.Process(); adbClearProcess .StartInfo.FileName = pathToAdb; adbClearProcess .StartInfo.Arguments = ...
by Mague
Mon Aug 31, 2015 9:40 pm
Forum: Mobile Testing
Topic: Is it possible to automatically uninstall Android App?
Replies: 6
Views: 4733

Re: Is it possible to automatically uninstall Android App?

Hi Lucian, thank you for your answer. I just tried it but I have an error with method "process()" which is not recognized by Ranorex :-( Error message: The type or namespace name "Process" could not be find (Are you missing a unsing directive or assembly reference?) (CS0246) How I built my user code...
by Mague
Fri Aug 28, 2015 7:43 pm
Forum: Mobile Testing
Topic: Is it possible to automatically uninstall Android App?
Replies: 6
Views: 4733

Is it possible to automatically uninstall Android App?

Hi everyone,

I am new with Ranorex and I wonder if is it possible to add a end step in my Android App test that uninstall the App from the device?

The device is connected with USB

Thank you