Search found 112 matches

by doke
Wed Oct 18, 2023 4:11 pm
Forum: Automation Tools
Topic: Remote desktop
Replies: 10
Views: 3308

Re: Remote desktop

@prj,
regarding screen resolution : that depens on your setup.
Using a VM stack, console screensize can be limited to save GPU memory size.
When the session is handed over from user to console this might impact ranorex recognition due to for example application resizing issues.
by doke
Tue Oct 17, 2023 7:33 pm
Forum: Automation Tools
Topic: Absolute path and relative path
Replies: 1
Views: 2238

Re: Absolute path and relative path

Have a look a the "Use cache"- property of the repo items "above" the object you are referring to.
If you set "Use cache" to false, object recognition is reanalysing your tree object, which makes it a bit slower, but more resillient to changes within the object.

Good luck!
by doke
Tue Oct 17, 2023 4:45 pm
Forum: General Questions
Topic: Using RunAppFlags.NoElevation
Replies: 1
Views: 4043

Re: Using RunAppFlags.NoElevation

Bump.
Anyone ?

How to use Host.Local.RunApplication with RunAppFlags.None when ranorex is elevated and not elevated ?
by doke
Tue Oct 17, 2023 4:39 pm
Forum: Automation Tools
Topic: Remote desktop
Replies: 10
Views: 3308

Re: Remote desktop

Hi,

Would probably even better to run this from within the ranorex test, as the screen resolution for console is different, and might impact test results.
But then I still need to solve this open issue: viewtopic.php?t=23014
by doke
Tue Oct 17, 2023 8:38 am
Forum: Automation Tools
Topic: Remote desktop
Replies: 10
Views: 3308

Re: Remote desktop

instead of killing the rdp session, run this powershellscript to move the session to the console session2console.ps1 : if (!([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Start-Process pow...
by doke
Thu Oct 05, 2023 2:22 pm
Forum: General Questions
Topic: How to handle the Pop up box in correct manner
Replies: 6
Views: 4061

Re: How to handle the Pop up box in correct manner

Hoi Yves, when using popup watcher you use 2 differrnt repo items: 1- the popup screen 2- the button to click I noticed that, with our application, sometimes the popupscreen has been found , but the button is not clickable yet. When calling the popup watcher and using using the "2- the button to cli...
by doke
Tue Oct 03, 2023 7:58 pm
Forum: Automation Tools
Topic: UI Element is not visible.
Replies: 1
Views: 2094

Re: UI Element is not visible.

Hi,

Did your try to increase the "search timeout" property of the related items in the repo ?

regards,
Doke
by doke
Fri Jun 23, 2023 9:50 am
Forum: Automation Tools
Topic: Regarding XPath Index removal clarification
Replies: 10
Views: 6614

Re: Regarding XPath Index removal clarification

Hi Julie,

When I look at my Rx atrribute overview, and scroll down, I see:
Web plugin:
Webelement Id 200

Could it be that your weight value needs to be over 200 ?

Don
by doke
Fri Jun 16, 2023 9:20 am
Forum: Bug Reports
Topic: Parameter in Condition setting of TestCase/SmartFolder
Replies: 4
Views: 2903

Re: Parameter in Condition setting of TestCase/SmartFolder

Hi,

I made a demo solution, which shows what I think is, what you want to do.
Take a good look of how the parameters are coupled.

Good Luck!
by doke
Wed Jun 14, 2023 4:28 pm
Forum: Bug Reports
Topic: Parameter in Condition setting of TestCase/SmartFolder
Replies: 4
Views: 2903

Re: Parameter in Condition setting of TestCase/SmartFolder

Hi,
Yes

Change it to parameter (first field)
by doke
Wed Jun 14, 2023 6:58 am
Forum: General Questions
Topic: Can ranores use events to detect window popups
Replies: 5
Views: 1388

Re: Can ranores use events to detect window popups

Hi,

to disable this in chrome:
https://support.google.com/chrome/threa ... menu?hl=en

or the way you prefer it:
kill chrome using taskmanager & reopen it manually pops up the recover tabs dialog.

Good luck!
by doke
Fri Jun 09, 2023 12:58 pm
Forum: General Questions
Topic: Can ranores use events to detect window popups
Replies: 5
Views: 1388

Re: Can ranores use events to detect window popups

Hi, correct : findElement is the popupform. It can also be the button to click on. So you referce same item twice into the startpopupwatcher methode. on the otherhand, just disable the edge option: https://www.thewindowsclub.com/disable-restore-pages-notification-in-edge-browser Instead of programmi...
by doke
Wed May 31, 2023 4:19 pm
Forum: Automation Tools
Topic: SQL Datasource including variables
Replies: 2
Views: 2440

Re: SQL Datasource including variables

This is probably possible, I used the code below for update statements on a database (to reset to initial value before test) this code does not return a datatable create a code module with following code using System.Data.SqlClient; //make sure to add this in the using directives section and add a r...
by doke
Wed May 31, 2023 2:04 pm
Forum: General Questions
Topic: Send multiple attachments in one email?
Replies: 1
Views: 381

Re: Send multiple attachments in one email?

Can be done, depending on your coding skills :) Atttachments are passed as a array of strings : [UserCodeMethod] public static bool SendEmail( string subject, string to, string from, string body, string[] attachments, string serverHostname, int serverPort, bool useSSL = false, string username = "", ...
by doke
Tue May 23, 2023 8:57 am
Forum: General Questions
Topic: Warning message related to CEF AUT is not instrumented correctly
Replies: 9
Views: 2908

Re: Warning message related to CEF AUT is not instrumented correctly

Hi jvarela,

This is an old topic.
My expirience with CEF recognition is that is working with MsEdge.
Just make sure youre sut has been implemented with --remote-debugging-port=....

Regards,
Don