Search found 84 matches

by dhale
Fri Feb 16, 2024 10:00 pm
Forum: General Questions
Topic: Failed to find item
Replies: 1
Views: 249

Re: Failed to find item

Please post a snapshot. (not a screen shot) https://support.ranorex.com/userguide/r ... hot-files/
by dhale
Fri Jan 05, 2024 8:56 pm
Forum: Automation API
Topic: Global timeout
Replies: 1
Views: 3095

Re: Global timeout

Few suggestions to consider: regarding "while a modal dialog is displayed above this edit field" <-- consider using a popupwatcher to dismiss the modal? regarding delay: Delays are not a good way of handling things in general. Its best to check properties and handle situations accordingly. You may w...
by dhale
Wed Dec 20, 2023 4:49 pm
Forum: General Questions
Topic: Update Ranorex Report Level from Warning to Fail
Replies: 2
Views: 5077

Re: Update Ranorex Report Level from Warning to Fail

I dont use recordings. But, if the Continue on fail property for the Wait for action is set to True it appears that yes, you are going to get a warning, not a fail. So all you should need to do set it to False. "While looking into possible ways to update the Solution to change the reporting levels, ...
by dhale
Mon Nov 27, 2023 7:24 pm
Forum: Automation Tools
Topic: Deleting global variables
Replies: 2
Views: 4913

Re: Deleting global variables

Left click the row number to select the desired row, then either press the keyboard Delete key, or you can Right Click on the row number and click "Delete selected row(s)".
by dhale
Tue Oct 17, 2023 6:56 pm
Forum: General Questions
Topic: Double license consumption from CLI
Replies: 3
Views: 6370

Re: Double license consumption from CLI

From what you describe - yes this is expected behavior. What I understand from what you wrote is that you happen to have written your "test" in such a way that "1 test" needs to be executed on 2 different machines at the same time. (maybe due to interaction between applications? eg a chat feature or...
by dhale
Mon Jul 03, 2023 4:54 pm
Forum: General Questions
Topic: chrome extension 1.4.0 - redirect
Replies: 8
Views: 7047

Re: chrome extension 1.4.0 - redirect

From what I see 10.7.1 is not able to use 1.3.1. At least not on my VMs - nothing is able to be found/recognized in Edge.
by dhale
Fri Jun 30, 2023 5:45 pm
Forum: General Questions
Topic: chrome extension 1.4.0 - redirect
Replies: 8
Views: 7047

Re: chrome extension 1.4.0 - redirect

heh - I installed Ranorex 10.7.1 and noticed the same thing. I'm submitting a support ticket now for this.
by dhale
Mon Mar 13, 2023 4:48 pm
Forum: Automation Tools
Topic: Cannot identify elements during runtime in chrome
Replies: 3
Views: 1827

Re: Cannot identify elements during runtime in chrome

I note that "We have a desktop application that launches a survey in chrome" Which to me means that a first step would be to confirm that the remote debugging port in chrome is enabled. Its likely that the remote debugging port may not be enabled in chrome if the application launching it isn't passi...
by dhale
Thu Mar 09, 2023 8:16 pm
Forum: General Questions
Topic: How to do tab 5 times, to get to a text box then use a keyboard command to type the text
Replies: 6
Views: 979

Re: How to do tab 5 times, to get to a text box then use a keyboard command to type the text

To limit to just the Keyboard, you can do something like: (untested) Keyboard.Press("{Tab}, 300, 5"); Keyboard.Press("<your string value here>", 300); Keyboard.Press("{Return}); See https://www.ranorex.com/Documentation/Ranorex/html/M_Ranorex_Keyboard_Press_12.htm Alt #1: You could do a recording of...
by dhale
Tue Mar 07, 2023 3:27 pm
Forum: General Questions
Topic: Automate Windows Remote Desktop or VM
Replies: 1
Views: 823

Re: Automate Windows Remote Desktop or VM

Ranorex doesnt work through remote desktop. So what you are trying to do is not possible they way you are trying to do it in Ranorex. But thats not to say what you are trying to do is not possible, just that its not possible the way you are trying to do it. Ranorex need to run on a realized desktop....
by dhale
Mon Feb 20, 2023 5:11 pm
Forum: General Questions
Topic: Clarity required on ExecuteScript, Ranorex 10.5.2, and Manifest V3
Replies: 21
Views: 14749

Re: Clarity required on ExecuteScript, Ranorex 10.5.2, and Manifest V3

The other day when I saw 10.5.2 was released, I temporarily updated to it to see if the ExecuteScript issue I was having was fixed. When I upgraded I manually uninstalled the Chrome extension, (and uninstalled the Microsoft Edge extension) then installed 10.5.2, and used the instrumentation wizard t...
by dhale
Thu Feb 16, 2023 4:45 pm
Forum: Bug Reports
Topic: Upgrade prerequisites - failed Incorrect function
Replies: 5
Views: 2849

Re: Upgrade prerequisites - failed Incorrect function

I would do the following: Uninstall Ranorex Studio. Reboot Reinstall Ranorex Studio. If issues persist, contact Support - You had two errors, one was that a system restore point could not be created. Your other error was as follows, and is what Support will probably want to know, but send them the e...
by dhale
Fri Feb 10, 2023 7:58 pm
Forum: General Questions
Topic: Visual Studio 2022 support with Ranorex API
Replies: 3
Views: 677

Re: Visual Studio 2022 support with Ranorex API

There's a known bug with Execute script in Ranorex on the more recent versions - I forget exactly when it started but there are other posts about it.
"I thought I should install the latest Ranoex, so I installed 10.5.1." <-- this is your problem with execute script
by dhale
Sat Jan 21, 2023 4:59 am
Forum: Automation Tools
Topic: Font is too small when change 100% scaling.
Replies: 8
Views: 1173

Re: Font is too small when change 100% scaling.

Sounds like you are using a 4K monitor. Lots of posts about this.
"scale is = 125% as recommended" <-- 125% scale is NOT what Ranorex recommends or supports.
You need to run in 100% scale when running Ranorex.
by dhale
Sat Jan 21, 2023 4:51 am
Forum: General Questions
Topic: Get list of items from one repository item
Replies: 2
Views: 402

Re: Get list of items from one repository item

Something like this

Code: Select all

IList<Button> allButtons = yourRepoItemInfo.CreateAdapters<Button>().ToList(); 
Where "yourRepoItemInfo" is the RepoItemInfo object of the repository item that gets you to all your buttons you want to see