Search found 13 matches

by chethshetty
Mon Jun 22, 2015 2:35 pm
Forum: Mobile Testing
Topic: App get crashed while tap on element in iOS Instrumented app
Replies: 10
Views: 2779

Re: App get crashed while tap on element in iOS Instrumented app

Hi Team, Similar issue even i am facing with Ranorex. We have an iOS Application which need to be automated. I have integrated the Ranorex library into the ipa file. all works fine. Now our app is crashing when tap on a specific view controller. This crash do not occur without instrumenting. Is ther...
by chethshetty
Tue Jun 16, 2015 7:43 am
Forum: Mobile Testing
Topic: In iOS device - Launching 2 native apps simultaneously?
Replies: 4
Views: 2062

Re: In iOS device - Launching 2 native apps simultaneously?

Hello there, Sorry my question confused you :wink: You need not be afarid :lol: What we wanted to know is While running a native app, we may need to access other apps along with the existing Ranorex library integrated native app . So is there a way we can access other native apps along with the curr...
by chethshetty
Mon Jun 15, 2015 11:04 am
Forum: Mobile Testing
Topic: In iOS device - Launching 2 native apps simultaneously?
Replies: 4
Views: 2062

In iOS device - Launching 2 native apps simultaneously?

I have one Application which need to Play a Video in different native Apps installed in an same iOS device(say iPad Mini 2). In Playing a video there are several ways to Choose a installed native App to Play. These videos will always be played externally. Is this possible to automate my App using Ra...
by chethshetty
Mon Oct 06, 2014 10:15 am
Forum: Mobile Testing
Topic: Ranorex throws an exception while executing Touch() method
Replies: 3
Views: 2144

Re: Ranorex throws an exception while executing Touch() method

Hello there, Please find my comments inline with your queries below. 1. What version of Ranorex are you using? Ranorex version 5.1.2 2. What version of Windows are you using? Windows 7.0 Home basic 3. What mobile OS are you testing against? iPad 2 with iOS 7.1 Exception: The Execution comes to catch...
by chethshetty
Mon Sep 29, 2014 11:13 am
Forum: Mobile Testing
Topic: Ranorex throws an exception while executing Touch() method
Replies: 3
Views: 2144

Ranorex throws an exception while executing Touch() method

I am sometime getting an exception while executing the Touch() method. Consider an example: Consider touching the button called "Logout" try { if(repo.MyApp.Settings.Button_Logout.Visible) { repo.MyApp.Settings.Button_Logout.Touch(); Report.Log(ReportLevel.Success,"Logout button is pressed"); } } ca...
by chethshetty
Wed Aug 13, 2014 12:41 pm
Forum: Mobile Testing
Topic: Spy detects the element which is been hidden
Replies: 1
Views: 2115

Spy detects the element which is been hidden

Hi there, There are certain elements which is not visible(may be hidden) in the App but Ranorex would say the element is visible. To be clear the Spy detects the element which is been hidden. Example: Consider an iPad supporting App in which we are spying a element which is behind a pop up screen. E...
by chethshetty
Wed Aug 13, 2014 12:26 pm
Forum: Mobile Testing
Topic: Error results in screenshot of PC and not app?
Replies: 13
Views: 3113

Re: Error results in screenshot of PC and not app?

Hi there, Even i was facing the same issue. As the support team already mentioned us that its an issue from Ranorex. We can use the below line for taking screenshot: Report.Screenshot(....); (Hope you know the syntax :lol: But again this will sometimes fails,i mean to say when the execution reached ...
by chethshetty
Thu Jun 19, 2014 5:22 am
Forum: Mobile Testing
Topic: Taking screenshots of the iOS App during runtime
Replies: 2
Views: 2188

Re: Taking screenshots of the iOS App during runtime

Hello Robert, Thanks for the Solution. Now i could able to take the screenshot by passing the mobile app as an argument. So my code would be: Report.Screenshot(ReportLevel.Error, "User", "Testing the screenshot", repo.MyDevice.Self, false, new RecordItemIndex(1)); The above code works fine for me. :)
by chethshetty
Mon Jun 16, 2014 7:15 am
Forum: Mobile Testing
Topic: Taking screenshots of the iOS App during runtime
Replies: 2
Views: 2188

Taking screenshots of the iOS App during runtime

Hi, Is there any way to take the screenshot of the iOS app during runtime without passing the repository item as a parameter. I have few piece of code which takes screenshot, but here i need to pass the repository item. This may fail in few cases. Example: Report.Screenshot(ReportLevel.Error, "User"...
by chethshetty
Thu Apr 24, 2014 10:23 am
Forum: Mobile Testing
Topic: Getting the iOS version before running test Suit
Replies: 1
Views: 2144

Getting the iOS version before running test Suit

I am facing an issue in applying condition for the repository for OS version in an iOS mobile app. My Requirement: I am making 2 separate repository for iOS6 and iOS7 Application. Basically i need to check the OS version before running test suit. I could see an option in the base URL of the root fol...
by chethshetty
Wed Apr 23, 2014 6:22 am
Forum: Mobile Testing
Topic: How to get the iOS-Version of my testdevice
Replies: 11
Views: 3165

Re: How to get the iOS-Version of my testdevice

Element mobileAppRepoElement = repo.YourMobileApp.mobileApp.Element;
MobileApp myApp = new MobileApp(mobileAppRepoElement);
Report.Info("OS-Version: " + myApp.OSVersion);

Can some one suggest what do repo.YourMobileApp.mobileApp.Element; line signifies?

What does YourMobileApp refers to?
by chethshetty
Wed Apr 09, 2014 5:28 pm
Forum: Mobile Testing
Topic: iOS: How to find out the loading time of the screen
Replies: 1
Views: 2366

iOS: How to find out the loading time of the screen

Can anyone please suggest me, how we can go about verify the loading time of the App screen.

I need to run a script where i say, this screen should load within # of seconds or else my test cases fails. Can this be done by ranorex.