Search found 43 matches

by karltinsly
Tue May 30, 2023 9:57 pm
Forum: General Questions
Topic: Send multiple attachments in one email?
Replies: 1
Views: 375

Send multiple attachments in one email?

Is it possible to send multiple attachments in a single email using the email helpers? I've tried separating the filenames in a parameter with a semi-colon (also tried a comma), like so: c:\test\test01.txt; c:\test\test02.txt but it didn't work. I couldn't find the answer in any of the documentation...
by karltinsly
Thu Jul 14, 2022 11:07 pm
Forum: Automation Tools
Topic: Usercodecollection not showing in library
Replies: 1
Views: 726

Re: Usercodecollection not showing in library

Apparently I was adding the reference in the wrong place - I was adding to the reference folder under Ranorex Automation Helpers. It works when I add it to the References folder directly below the project header.
by karltinsly
Thu Jul 14, 2022 8:20 pm
Forum: Automation Tools
Topic: Usercodecollection not showing in library
Replies: 1
Views: 726

Usercodecollection not showing in library

We have a custom usercode collection that we reference in dozens of projects. It has both recording modules and code modules in it. It works fine in all of the solutions we've used it in. Today I added it to an existing solution, and although the recording modules appear in the browser, the usercode...
by karltinsly
Thu Dec 02, 2021 9:40 pm
Forum: Robotic Process Automation
Topic: Could we add a Process Automation forum here?
Replies: 3
Views: 6886

Re: Could we add a Process Automation forum here?

Nice - thanks! As I mentioned in my initial request, my co-worker, Bernie, and I have done a lot of process automation in our production system. We have scripts running on multiple VMs, controlled by a scheduler called RemoteLaunch, which is part of a test management program called SpiraTest. We'd l...
by karltinsly
Wed Dec 01, 2021 6:07 pm
Forum: Robotic Process Automation
Topic: Could we add a Process Automation forum here?
Replies: 3
Views: 6886

Could we add a Process Automation forum here?

We have been using Ranorex for automating production processes for over three years. We have many complex scripts that run daily, and even hourly. Our scripts download, process, and enter data in both web and desktop applications. They perform regular health checks on multiple systems and report the...
by karltinsly
Wed Nov 10, 2021 11:33 pm
Forum: General Questions
Topic: Recognize if there are multiple matches to repo item
Replies: 4
Views: 736

Re: Recognize if there are multiple matches to repo item

After some experimenting, this works - I wish I understood a bit more about adapters - I've read the docs, but I'm still confused - but at least it's working for me now. IList<Cell> list1 = CountMe.CreateAdapters<Cell> (30000); int elementListCount = list1.Count; Report.Info(elementListCount.ToStrin...
by karltinsly
Wed Nov 10, 2021 11:30 pm
Forum: General Questions
Topic: Recognize if there are multiple matches to repo item
Replies: 4
Views: 736

Re: Recognize if there are multiple matches to repo item

Btw that last bit of code yields this error:

Cannot implicitly convert type 'Ranorex.Cell' to 'System.Collections.Generic.IList<Ranorex.Cell>'. An explicit convertion exists (are you missing a cast?)

I'm not sure how to correct this.
by karltinsly
Wed Nov 10, 2021 11:14 pm
Forum: General Questions
Topic: Recognize if there are multiple matches to repo item
Replies: 4
Views: 736

Re: Recognize if there are multiple matches to repo item

I am trying to create an Ilist, similar to what you shared, though my application is a java desktop app, not a web app. The method I'm building has a RepoItemInfo called CountMe passed in. Here's my code so far - I'm not really clear on how CreateAdapter works, so please let me know if I'm using it ...
by karltinsly
Wed Nov 10, 2021 12:13 am
Forum: General Questions
Topic: Recognize if there are multiple matches to repo item
Replies: 4
Views: 736

Recognize if there are multiple matches to repo item

Is there a way for my script to recognize that there are more than one match for a repo item? If I look at my repo item in Spy, it will tell me that there are two or more elements that match, but if I use the same repo item in a script, it will just select the first item that matches. If there are m...
by karltinsly
Mon Oct 11, 2021 10:40 pm
Forum: General Questions
Topic: Find cell based on two column values
Replies: 6
Views: 871

Re: Find cell based on two column values

Okay, well I got something that works for my application. In case anyone else is looking for this sort of thing, here's what worked for me. This will get the cell for the year I'm looking for in the row of the period I'm looking for: <table path>/row/cell[@text=$varLookupPeriod]/../cell[@text=$varLo...
by karltinsly
Mon Oct 11, 2021 4:41 pm
Forum: General Questions
Topic: Find cell based on two column values
Replies: 6
Views: 871

Re: Find cell based on two column values

Okay, I got rid of ancestors and backed up the tree a little ways and now the file is small enough to attach. Hope there is enough here for you to see what I need to do.
by karltinsly
Mon Oct 11, 2021 4:08 pm
Forum: General Questions
Topic: Find cell based on two column values
Replies: 6
Views: 871

Re: Find cell based on two column values

Hmm. It looks like it didn't upload. I tried again and this time I see a message that says "Failed to move uploaded file."

I tried with a zipped version of the file and got the same thing. Am I missing a step?
by karltinsly
Mon Oct 11, 2021 4:02 pm
Forum: General Questions
Topic: Find cell based on two column values
Replies: 6
Views: 871

Re: Find cell based on two column values

Here's the snapshot. Thanks!
by karltinsly
Mon Oct 11, 2021 3:36 pm
Forum: General Questions
Topic: Find cell based on two column values
Replies: 6
Views: 871

Find cell based on two column values

I have a table that looks like this: Period Year 1 2021 2 2021 3 2021 4 2021 1 2022 2 2022 3 2022 4 2022 I need to be able to select a row based on the combination of those two fields - for example, period 2 of 2022. I've tried a couple of different ways to get there, but I'm not getting the right c...
by karltinsly
Tue Jun 29, 2021 3:43 pm
Forum: General Questions
Topic: Unhandled exception when running from release executable
Replies: 1
Views: 1018

Unhandled exception when running from release executable

I am trying to run a test from the executable in the release directory, using a shortcut that also passes in the run configuration. We have dozens of tests that we run this way, but this new one is throwing an error: Test exectuatle crashed with unhandled exception. Please ensure all required prereq...