Search found 22 matches

by mayo
Thu Jun 11, 2020 6:35 pm
Forum: General Questions
Topic: Jenkins and "Ranorex Agent"
Replies: 12
Views: 1812

Re: Jenkins and "Ranorex Agent"

Hello Julien Diot, I am not a master with Jenkins but I do believe they have a setting called "Execute Concurrent Builds" which may or may not help with your situation. The other method I can think of is triggering a batch file from Jenkins. Example below: Start C:Mytest.exe /a:"Agent 1" Start C:Myt...
by mayo
Thu Jun 11, 2020 6:22 pm
Forum: General Questions
Topic: The key sequence depends on the input language
Replies: 2
Views: 998

Re: The key sequence depends on the input language

Hello siziakov, When using a key sequence action Ranorex simply simulates someone pressing those keys on the keyboard. It sounds like your application under test is converting the keyboard press when it is set to Russian. My guess is you will get the same results when typing manually as well. You ca...
by mayo
Thu Jun 04, 2020 2:46 pm
Forum: Object Identification and Technologies
Topic: Ranorex struggles to find elements in a table
Replies: 17
Views: 4273

Re: Ranorex struggles to find elements in a table

Hello Bobby, You mentioned you were successful with other tables within your application, I'm curious as to how they compare to this one. Would you be able to provide a snapshot of a working table in your AUT? I also don't think there was anything specific towards WPF in Ranorex 9.3 but I do recomme...
by mayo
Mon Apr 06, 2020 9:10 pm
Forum: Automation Tools
Topic: How can I make the difference between a timeout and an instant error while waiting for a web page?
Replies: 3
Views: 1351

Re: How can I make the difference between a timeout and an instant error while waiting for a web page?

Hello,

If I understand correctly you simply need to validate if the page fails to load and how long it took before it failed because as of right now a wait for action may reach the timeout and fail before the page actually loads and displays an error. Is this correct?

Cheers,
by mayo
Mon Apr 06, 2020 6:34 pm
Forum: General Questions
Topic: Sharing a solution with DevOps - How to update the Solution locally?
Replies: 2
Views: 1077

Re: Sharing a solution with DevOps - How to update the Solution locally?

Hello BlindJones, Azure DevOps is pulling from your GIT Repository, so when you push from Ranorex you are pushing to your GIT Repo which in turn is linked to your Azure DevOps Repo. I would recommend connecting your local work repo with GitHub so you can work with it remotely. https://github.com/ Ch...
by mayo
Tue Mar 31, 2020 8:24 pm
Forum: Mobile Testing
Topic: iOS | deployment issue
Replies: 4
Views: 3023

Re: iOS | deployment issue

Hello, 99% of the time this error is caused by a bad mobile provisioning or p.12 file. The easiest way to test this is to have Ranorex Support instrument and deploy your IPA to one of their test devices. I recommend creating a ticket and provide the IPA. https://www.ranorex.com/support-query/ Cheers,
by mayo
Tue Mar 17, 2020 6:36 pm
Forum: General Questions
Topic: SAP application
Replies: 4
Views: 1169

Re: SAP application

Hello kavya13, Based on the screenshots it does appear your application requires Ranorex to be running as administrator as odklizec has explained. I am not sure exactly what the issue is based on your description. Are you having issues with object recognition? or perhaps your test is failing? any ad...
by mayo
Wed Mar 04, 2020 4:42 pm
Forum: General Questions
Topic: Error while running the solution through NUnit Console
Replies: 13
Views: 1779

Re: Error while running the solution through NUnit Console

Hello,

Based on the exception thrown I would recommend re-installing Ranorex and be sure to restart the machine between the uninstall and reinstall. Let us know if the issue persists.

Cheers,
by mayo
Mon Feb 24, 2020 4:44 pm
Forum: General Questions
Topic: How to take screenshort in Ranorex
Replies: 1
Views: 895

Re: How to take screenshort in Ranorex

Hello johnken, You can use the Validation Action - Compare Image for this scenario, This action will compare the current image during runtime against the specified image(either a validation screenshot from the repo or an image from file). Is there is a specific reason for saving the image in a diffe...
by mayo
Fri Jan 17, 2020 3:55 am
Forum: General Questions
Topic: The Ranorex application failed to connect to the Ranorex License Manager
Replies: 6
Views: 1339

Re: The Ranorex application failed to connect to the Ranorex License Manager

Hello

I would recommend opening a support query so that the support team can look into the issue, especially if it pertains to your license.

https://www.ranorex.com/support-query/
by mayo
Fri Jan 17, 2020 3:52 am
Forum: General Questions
Topic: REST API service automation testing
Replies: 1
Views: 1785

Re: REST API service automation testing

Hello! Since Ranorex is designed for functional UI testing it does not support REST API out of the box, but since it uses .net you should be able to write your own code to accomplish this. I recommend searching through the forums for more information as a lot of people have covered this topic. I hop...
by mayo
Mon Jan 13, 2020 10:09 pm
Forum: General Questions
Topic: The Ranorex application failed to connect to the Ranorex License Manager
Replies: 6
Views: 1339

Re: The Ranorex application failed to connect to the Ranorex License Manager

Hello!

What Pavel said is correct, I would also verify there are actually licenses available on the License Manager. You can also see to which clients they are currently leased to.
2020-01-13 16_05_32-Window.png
Cheers!
by mayo
Tue Dec 31, 2019 9:51 pm
Forum: How To …
Topic: DataType of variable
Replies: 1
Views: 1304

Re: DataType of variable

Hello Prasoon,

When working in Ranorex recording modules and data binding, everything is a string. When working in code, you can use different types.

Cheers!
by mayo
Fri Dec 27, 2019 7:02 pm
Forum: General Questions
Topic: ReportToPDFModule variables
Replies: 5
Views: 1557

Re: ReportToPDFModule variables

I don't think there is any way around the anti-virus besides whitelisting or disabling it. You could also head over to the User Voice platform and leave a feature request, which is helpful to everyone.

-mayo
by mayo
Thu Nov 14, 2019 9:38 pm
Forum: How To …
Topic: click on text of element
Replies: 4
Views: 1894

Re: click on text of element

Hello! If you are simply trying to click on an element then I recommend using the Ranorex recording feature: https://www.ranorex.com/help/latest/ranorex-studio-fundamentals/ranorex-recorder/recording-a-test/ If you are using code I believe it should be mouse.click();. You can also right-click action...