Search found 17 matches

by MichielV
Wed Sep 20, 2023 4:27 pm
Forum: General Questions
Topic: bind repository variables to a recording variable
Replies: 0
Views: 1053

bind repository variables to a recording variable

Is it possible to bind repository variables within a recording to a recording variable and hide them from the recording data binding? I'm using a number of paths with variables in my repository. e.g. /form[@name='myApp']/control1/text[@text=$control1text] /form[@name='myApp']/control2/text[@text=$co...
by MichielV
Fri Oct 28, 2022 3:13 pm
Forum: Bug Reports
Topic: Invisible controls missing from v10.2.1
Replies: 15
Views: 9723

Re: Invisible controls missing from v10.2.1

Hi, Does enabling the WPF plugin setting "Show all elements" or "Realize items in virtualizing containers" make a difference for your application? Warning: Be careful before putting this change into production, this may impact other paths as well as a number of intermediate levels that are hidden wi...
by MichielV
Fri Oct 28, 2022 3:07 pm
Forum: Bug Reports
Topic: 10.3 Ranorex Spy setting does not work
Replies: 1
Views: 968

Re: 10.3 Ranorex Spy setting does not work

Can you try opening the settings from the "Ranorex Settings" application? I was able to fix this for my setup by opening and saving the settings this way. After that, I was able to open the settings from within spy again.
by MichielV
Fri Oct 28, 2022 3:01 pm
Forum: Bug Reports
Topic: Unable to focus after upgrading to agent 7.5.0
Replies: 0
Views: 830

Unable to focus after upgrading to agent 7.5.0

Hi, After upgrading from Ranorex Studio 10.1.2 and Ranorex agent 7.2.0 to Ranorex Studio 10.3 and Ranorex Agent 7.5.0, we are experiencing some issues to get focus on our application under test. Tests are started from CI/CD using command line, not using the /a argument to use an agent. Elements in t...
by MichielV
Wed Nov 24, 2021 5:40 pm
Forum: Automation API
Topic: Newtonsoft conflict! Ranorex developers!
Replies: 3
Views: 3731

Re: Newtonsoft conflict! Ranorex developers!

As of 10.1.0 Ranorex is based on .Net framework 4.8. https://www.ranorex.com/release-notes/ This may require some updates of other dependencies such as Newtonsoft to a version that also uses .NET framework 4.8.
by MichielV
Wed Nov 24, 2021 5:27 pm
Forum: Automation Tools
Topic: What does the plugin.cef.wpffulltypewhitelist setting do?
Replies: 2
Views: 1081

Re: What does the plugin.cef.wpffulltypewhitelist setting do?

Hi Jason,
Could it be this was already in there in preparation for the 10.1.3 update? :D Because now a new setting "WPF window rule FullType white list" has appeared in the settings UI. :o
[Waiting for the documentation update...]
by MichielV
Tue Nov 09, 2021 11:10 am
Forum: Automation Tools
Topic: Ranorex Jenkin Itegration Nuget package missing
Replies: 2
Views: 1205

Re: Ranorex Jenkin Itegration Nuget package missing

You can add restore and update commands for the nuget packages to your jenkins pipeline before building like this: //update nuget packages bat label: 'restore nuget packages', script:"c:\\nugetCLI\\nuget.exe restore .\\[yourScriptFolder]\\[yourSolutionFolder]\\[yourSolutionName].sln" bat label: 'upd...
by MichielV
Tue Nov 09, 2021 11:01 am
Forum: Automation Tools
Topic: Ranorex Test Unable to Run on Gitlab CI Environment
Replies: 4
Views: 5489

Re: Ranorex Test Unable to Run on Gitlab CI Environment

Ranorex needs a desktop environment to be able to run, and cannot be started from a GitLab/Jenkins slave running as a service on the target machine. For Jenkins, we fixed this by launching the Jenkins slave in the desktop session through JNLP, a batch file, and a windows scheduled task to run this b...
by MichielV
Tue Nov 09, 2021 10:38 am
Forum: Automation Tools
Topic: What does the plugin.cef.wpffulltypewhitelist setting do?
Replies: 2
Views: 1081

What does the plugin.cef.wpffulltypewhitelist setting do?

I came across this plugin.cef.wpffulltypewhitelist setting in the rxsettings file, but it is not shown in the UI, nor do I find it anywhere in the documentation. Is there any information on what this setting does and how to use it?
by MichielV
Tue Nov 09, 2021 10:32 am
Forum: Automation Tools
Topic: No longer able to see into container
Replies: 6
Views: 1269

Re: No longer able to see into container

Check if your plugin settings are identical in your solution (saved per solution) and in spy (saved on your machine). This can often cause different paths to be generated and recognized. (at least for WPF applications)
by MichielV
Wed May 12, 2021 1:38 pm
Forum: Object Identification and Technologies
Topic: Wrapped CEFsharp browser is not identified as CEFsharp
Replies: 1
Views: 1253

Wrapped CEFsharp browser is not identified as CEFsharp

Hi, In our application we have an embedded CEFsharp browser where the debug port is activated (accessible via localhost:8081). However, this does not seem to be recognized by Ranorex as being a CEFsharp browser. I have created a simple test application with an embedded CEFsharp browser using the sta...
by MichielV
Fri Nov 09, 2018 10:12 am
Forum: How To …
Topic: Limiting search depth
Replies: 6
Views: 2109

Limiting search depth

We are building tests for a rather large WPF application (thousands of elements, 100+ nested levels) using ranorex. In order to simplify the paths, we often use the "any descendants" vector //. This however has the downside that it significantly slows down the automation and spy because the entire A...
by MichielV
Fri Nov 09, 2018 10:00 am
Forum: How To …
Topic: How to integrate Ranorex to jenkins
Replies: 2
Views: 2536

Re: How to integrate Ranorex to jenkins

Below is an example of the pipeline code I'm using. I have a variable with the script name (§{name} in the example, then - fetch the script from source control (using svn here) - update packages (optional - only needed if you use nuget packages) - build using msbuild (make sure you have windows deve...