Search found 33 matches

by dkmpbrt
Mon Jul 03, 2023 1:17 pm
Forum: Bug Reports
Topic: Could not load file or assembly
Replies: 0
Views: 3027

Could not load file or assembly

I've created a Ranorex project, changed the output type of the project to "Class library" so it creates a DLL instead of an exe. i've referenced this .dll in another ranorex project and used some code of the referenced dll. When running I get the error " Could not load file or assembly 'projectname'...
by dkmpbrt
Wed Apr 27, 2022 9:17 am
Forum: Mobile Testing
Topic: Unsupported URL in RxBrowser
Replies: 1
Views: 3701

Unsupported URL in RxBrowser

Hello,

i'm trying to navigate to my website in the RxBrowser, however the website seems to be stuck in a loading state. I see that there is 1 error, "Unsupported URL".

Anyone got the same issue?

Kr,
Bart
by dkmpbrt
Fri Mar 19, 2021 9:52 am
Forum: General Questions
Topic: Call Remote agent through code
Replies: 2
Views: 1046

Re: Call Remote agent through code

^bump again
by dkmpbrt
Fri Mar 19, 2021 9:51 am
Forum: Object Identification and Technologies
Topic: FindSingle on adapter
Replies: 1
Views: 1464

Re: FindSingle on adapter

^bump
by dkmpbrt
Mon Mar 01, 2021 8:47 am
Forum: General Questions
Topic: Call Remote agent through code
Replies: 2
Views: 1046

Re: Call Remote agent through code

^bump
by dkmpbrt
Thu Feb 18, 2021 9:51 am
Forum: General Questions
Topic: Call Remote agent through code
Replies: 2
Views: 1046

Call Remote agent through code

Hey,

I've seen multiple posts about using remote agents through code module that it's not supported. Is this still the case?

kr,
Bart
by dkmpbrt
Wed Feb 10, 2021 5:14 pm
Forum: Object Identification and Technologies
Topic: FindSingle on adapter
Replies: 1
Views: 1464

FindSingle on adapter

Hey, i'm trying to use FindSingle on an adapter. If I read the documentation, he would search for the xpath in that specific element. Although he applies the findsingle on the whole dom-element. Item in repository: //div[@data-aut='fields.squad_name'] My code: [UserCodeMethod] public static void set...
by dkmpbrt
Thu Dec 17, 2020 1:54 pm
Forum: Object Identification and Technologies
Topic: Attribute does not match (actual='(null)', expected='')?
Replies: 5
Views: 2412

Re: Attribute does not match (actual='(null)', expected='')?

Hey mrt,

Indeed, if you validate against (null) it will only pass if it's empty and will fail if something is filled in.

Could you please tell me what type of input you're using?

If it's just a text-input, maybe try validating on the "Value" instead of "TagValue"?

Kr,
Bart
by dkmpbrt
Mon Dec 14, 2020 8:56 am
Forum: Object Identification and Technologies
Topic: Attribute does not match (actual='(null)', expected='')?
Replies: 5
Views: 2412

Re: Attribute does not match (actual='(null)', expected='')?

Hey,

I think you can just fill in "(null)" under "Match value" to check if the field is null.

kr,
Bart
by dkmpbrt
Fri Dec 04, 2020 10:21 am
Forum: Object Identification and Technologies
Topic: Knockout and Ranorex
Replies: 3
Views: 1436

Re: Knockout and Ranorex

Hey,

Can't you just add the id attributes to the elements in the view?

Kr,
Bart
by dkmpbrt
Thu Dec 03, 2020 3:36 pm
Forum: Mobile Testing
Topic: Ranorex Method for Connected Devices
Replies: 2
Views: 1465

Re: Ranorex Method for Connected Devices

Hey Sylus,

I don't know if this is the solution, but I think you could use the following code:

Code: Select all

foreach(var endpoint in Ranorex.Core.Remoting.RemoteServiceLocator.Service.AllKnownEndpoints)
{
        Host.Local.RunMobileApp(endpoint.RemoteInfo.DisplayName, "YOURAPPNAME");
}
Kr,
Bart
by dkmpbrt
Thu Dec 03, 2020 3:27 pm
Forum: Mobile Testing
Topic: Can't install serviceapp on iOS
Replies: 3
Views: 1849

Re: Can't install serviceapp on iOS

Hey,

I've managed to get it working with only the newest serviceapp without needing the newest ranorex studio version.

Kr,
Bart
by dkmpbrt
Mon Nov 30, 2020 3:51 pm
Forum: Mobile Testing
Topic: Detect OS of endpoint
Replies: 2
Views: 2443

Re: Detect OS of endpoint

Hi Ranorex Team,

I have found the solution myself.

I used the following code to retrieve the OS:

Code: Select all

Ranorex.Core.Remoting.RemoteServiceLocator.Service.GetByDisplayName("DEVICENAME").RemoteInfo.Platform.MobilePlatform.ToString();
Kr,
Bart
by dkmpbrt
Mon Nov 30, 2020 3:38 pm
Forum: Mobile Testing
Topic: Can't install serviceapp on iOS
Replies: 3
Views: 1849

Can't install serviceapp on iOS

Hi, I had the RxServiceApp 3.2.0 installed on my iPhone, but it kept crashing, so I deleted it and am trying to re-install it. But I receive an error that the app can not be installed. I receive the following message: This app can't be installed because the integrity of the app couldn't be verified....
by dkmpbrt
Fri Nov 20, 2020 1:49 pm
Forum: Bug Reports
Topic: CEF Warning blocks test execution
Replies: 6
Views: 2854

Re: CEF Warning blocks test execution

Hey,

You can close this topic. I've fixed it with using the following xpath:

Code: Select all

/?/dom[@domain>'focus']
My apologies :)