Search found 8 matches

by kewpiedoll99
Tue Jul 14, 2015 9:31 pm
Forum: Automation Tools
Topic: Object not found when exe called from other code.
Replies: 2
Views: 2088

Re: Object not found when exe called from other code.

I sent a reply to the email address, including a zip of my project. Thank you!
by kewpiedoll99
Wed Jul 01, 2015 9:15 pm
Forum: Automation Tools
Topic: Object not found when exe called from other code.
Replies: 2
Views: 2088

Object not found when exe called from other code.

I have a short automated Ranorex test that goes to a Chrome window and changes the widths of some table columns, clicks an icon, fills in a form, and so on. My process is to do most of the setup using Java code, and then call this exe to execute a portion of the test. The Java code opens the Chrome ...
by kewpiedoll99
Thu Jun 18, 2015 3:49 pm
Forum: Automation Tools
Topic: Trying to change column width in table
Replies: 4
Views: 2281

Re: Trying to change column width in table

I got it - I needed to include "px" in my width measurement. Without it, it was failing to replace the existing setting. With px, the width changed to my setting and I saw the display change as well.

Code: Select all

    hdrTd.SetStyle("width","10px");
by kewpiedoll99
Thu Jun 18, 2015 3:28 pm
Forum: Automation Tools
Topic: Trying to change column width in table
Replies: 4
Views: 2281

Re: Trying to change column width in table

Thanks for the clarification on which to use. The width of my TD tags are set using style attribute, but not the width attr. I noticed that there is in each an inner div that also has a width set (using the style attr): <td class="v-table-header-cell" style="width: 83px;"> <div class="v-table-resize...
by kewpiedoll99
Wed Jun 17, 2015 9:35 pm
Forum: Automation Tools
Topic: Trying to change column width in table
Replies: 4
Views: 2281

Re: Trying to change column width in table

FYI, I changed my code to iterate over all rows and change the 17th column's width in each row, but it did not end up with a changed width at the end of the iteration. Please help. The app I am testing has an overflow=hidden, such that when a column does not show the button that button is unclickabl...
by kewpiedoll99
Wed Jun 17, 2015 9:24 pm
Forum: Automation Tools
Topic: Trying to change column width in table
Replies: 4
Views: 2281

Trying to change column width in table

I have a table created dynamically and every row's cells have the width spec'd. I'm trying to change the width in the 17th column but it's not changing. Here's the code I'm using: string tdRxPathBase = "/dom/body/div[1]/table/tbody/tr[1]"; string tdRxPath = tdRxPathBase + "/td[17]"; TdTag eTdTag = n...
by kewpiedoll99
Sun May 31, 2015 10:10 pm
Forum: General Questions
Topic: Ranorex exe not accepting parameters from command line
Replies: 3
Views: 1767

Re: Ranorex exe not accepting parameters from command line

Thanks. I'm not even sure why I would have been using backslash inside Ranorex... Good catch.

Do you know why it wouldn't work from the command line? You can see from the code samples that I'm using (regular) slashes there.
by kewpiedoll99
Thu May 28, 2015 7:16 pm
Forum: General Questions
Topic: Ranorex exe not accepting parameters from command line
Replies: 3
Views: 1767

Ranorex exe not accepting parameters from command line

I have a project with two params which I have defined in Global Parameters and bound to modules in the test case. When I look at Global Parameters for the project, it says they are "[Unbound]" in the Module Variable column, but in the Data Binding for the test case it shows them bound. (Screen shots...