Search found 195 matches

by tvu
Fri Oct 12, 2018 8:07 pm
Forum: Mobile Testing
Topic: Emulators For Mobile Testing
Replies: 2
Views: 2736

Re: Emulators For Mobile Testing

We use the iOS Simulator packaged with XCode for iOS automation. The app needs to be instrumented via code. You can simply add an endpoint with the IP address of the computer running the iOS Simulator. The app needs to be running on the simulator for Ranorex to see it. You do not need to install the...
by tvu
Wed Jun 06, 2018 7:08 pm
Forum: Mobile Testing
Topic: Unable to Detect USB Connection on iOS
Replies: 3
Views: 1791

Re: Unable to Detect USB Connection on iOS

Generally, if iTunes can see your device then Ranorex Studio should be able to as well. In my case, my corporate controlled antivirus was blocking the USB connection. I had to have them grant access.
by tvu
Wed Jun 06, 2018 6:44 pm
Forum: General Questions
Topic: Share Ranorex reports on a folder shared in the network
Replies: 1
Views: 1168

Re: Share Ranorex reports on a folder shared in the network

You can create a batch file that runs the "copy" command to copy those two files over to your shared folder. Then run it after your automation completes. https://www.computerhope.com/copyhlp.htm If you run your automation via command line, you can use the /rf option to specify the report be generate...
by tvu
Tue May 22, 2018 10:45 pm
Forum: General Questions
Topic: Automation freezing on Windows 10.0.17134 Build 17134
Replies: 4
Views: 2321

Re: Automation freezing on Windows 10.0.17134 Build 17134

Thanks Alex!

I will try to upgrade to v8.1.1 and see if it fixes the issues. Sounds like the issue is related to desktop UI automation. We are automating mobile apps, but hopefully this will fix the issue.
by tvu
Tue May 22, 2018 6:28 pm
Forum: General Questions
Topic: No suitable licence after upgrade from 7 to 8
Replies: 5
Views: 1687

Re: No suitable licence after upgrade from 7 to 8

On your new laptop, do you have the Type set as "Auto" in your license configuration? I found it sometimes defaults to RunTime. I'm also assuming you have a floating premium license and not a node-locked one.

Hope that helps.
by tvu
Tue May 22, 2018 12:13 am
Forum: General Questions
Topic: Automation freezing on Windows 10.0.17134 Build 17134
Replies: 4
Views: 2321

Automation freezing on Windows 10.0.17134 Build 17134

I have a Jenkins setup to run my automation. The jobs are run via a Windows Batch Command step. My RunTimePCs are Windows 10 machines. I did a Windows update to the latest security build last week to Version 10.0.17134 Build 17134. The automation now freezes during the run. Sometimes it takes 30 min...
by tvu
Fri May 18, 2018 11:43 pm
Forum: Bug Reports
Topic: WaitFor AttributeEqual does work as expected
Replies: 2
Views: 2560

WaitFor AttributeEqual does work as expected

I am automating an Android app. On each page, we have a title bar with a text element representing the title. I made a recording with a single action to do a "Wait for" where the following is set: Wait action = AttributeEqual Match Name = Text Match Value = My desired text value Repository Item = ti...
by tvu
Thu May 10, 2018 10:50 pm
Forum: General Questions
Topic: Iterate through controls with variables in path in User Code
Replies: 3
Views: 1460

Re: Iterate through controls with variables in path in User Code

Hi Darwin,

Your original idea should work. You just need to update the parameter by using the repo instance.

Code: Select all

for (int i = 1; i < totalNumber; i++)
{
    repo.ProgrammerIndex = i; 
    // verify label(i) exists and do other stuff
}
Hope that helps.
by tvu
Tue Apr 24, 2018 11:21 pm
Forum: How To …
Topic: Ranorex with Jenkins
Replies: 8
Views: 2723

Re: Ranorex with Jenkins

Hi LeenaSharma, Which plugins did you install? As far as I know, you don't need any Ranorex specific plugins. From your description, the error indicates that you are not in the correct directory when executing ATS.exe. I am not sure where you are running this command, but you can do the following. I...
by tvu
Mon Apr 23, 2018 9:18 pm
Forum: Mobile Testing
Topic: IOS Simulator
Replies: 4
Views: 1799

Re: IOS Simulator

Hi sivamyneni, I'm assuming your "web application" needs to be on a browser. The only way to automate this is to run RxBrowser on the Simulator and then load your web application on there. Several years ago, they provided the Xcode project for the RxBrowser in order to use the iOS Simulator. Ranorex...
by tvu
Tue Apr 10, 2018 11:18 pm
Forum: Automation Tools
Topic: Transfer of parameters
Replies: 5
Views: 1987

Re: Transfer of parameters

I created a user code module file that simply declared static variables. I think reference those variables from another user code module. For example, you will have a file called ParameterPassing.cs that declares the following: public static List<string> myValues = null; Then in your Smart Folder 2 ...
by tvu
Thu Apr 05, 2018 12:22 am
Forum: Object Identification and Technologies
Topic: Changing Ranorex Repository Programmatically
Replies: 7
Views: 2144

Re: Changing Ranorex Repository Programmatically

Hi Jannic, Maybe I am understanding this wrong, but why can't you use a repository variable and bind the value? .//*//label[@innertext=$labelValue]/../..//input When you use this repository item in a recording, the labelValue parameter will automatically be added a recording parameter. You would the...
by tvu
Wed Mar 28, 2018 6:12 pm
Forum: Mobile Testing
Topic: PressKeys() in Android not working
Replies: 16
Views: 11164

Re: PressKeys() in Android not working

Hi ms_infometis, There are two solutions that worked for me in the past. Perform the mobile key press on a repo item higher up the Xpath. For example, performing it on the mobileapp item or the mobileapp/form item. You must touch the text field for the username / password first to bring it into focu...
by tvu
Mon Mar 05, 2018 7:30 pm
Forum: Automation Tools
Topic: Test Iteration Counts
Replies: 13
Views: 5437

Re: Test Iteration Counts

Thanks Markus!
by tvu
Fri Mar 02, 2018 8:38 pm
Forum: Automation Tools
Topic: Test Iteration Counts
Replies: 13
Views: 5437

Re: Test Iteration Counts

Hi odklizec, Thanks for the suggestion. It will get the job done for what I need, but there is an issue. The index isn't set correctly if you are iterating the Smart Folder and the code module LogCurrentIteration is in a test case. Previously, I also notice that RunIterationCount only returns the to...