Search found 9 matches

by Djones92
Wed Jul 26, 2017 3:28 pm
Forum: General Questions
Topic: Closing TAB of an Application
Replies: 17
Views: 3308

Re: Closing TAB of an Application

On my machine, I can't check your snapshot. But from my experience with inner tabs in my application, if your close button (the X) is trackable and in your repository, I would use a *take any* regex in the path weightings to remove the dependency on the inner window name (the one that uses that vari...
by Djones92
Wed May 03, 2017 11:25 am
Forum: Automation Discussions
Topic: Quality Centre Integration - Reports
Replies: 1
Views: 2178

Quality Centre Integration - Reports

Hello I've followed the guide on how to run tests from QC - they run the entire suite when I only want to run test cases - the parameters don't seem to be passing correctly... Anyway! I'm not worried about that at the moment. When the tests finish, the report generates with 0kb, yet when I look in t...
by Djones92
Mon Sep 12, 2016 10:17 am
Forum: Object Identification and Technologies
Topic: How to validate something has been added to a tree
Replies: 4
Views: 2365

Re: How to validate something has been added to a tree

I now have a solution with the assistance of our developers. This will probably vary depending on your AUT and technology. What we have done is use a StringBuilder in the usercode. //first parent node StringBuilder sb = new StringBuilder(string.Format("?/?/treeitem[@name~'^.*{0}.*']/text[@name=$varP...
by Djones92
Wed Sep 07, 2016 2:10 pm
Forum: Object Identification and Technologies
Topic: How to validate something has been added to a tree
Replies: 4
Views: 2365

Re: How to validate something has been added to a tree

Hi odklizec Unfortunately I am not able to produce snapshots due to the nature of my work. I will try to explain better: There is a form to input some data, this includes the name of an object. The name of the object is what will be added to the tree and how we access that piece of data from then on...
by Djones92
Fri Sep 02, 2016 8:55 am
Forum: Object Identification and Technologies
Topic: How to validate something has been added to a tree
Replies: 4
Views: 2365

How to validate something has been added to a tree

Using Silverlight 5, Ranorex 6 In our application, there is a form to fill in name of object, etc... once this form has been filled in and the "Ok" button clicked, this item gets added to a tree, where the location depends on the type of object you're creating, child, grandchild etc (see image for ...
by Djones92
Fri Aug 26, 2016 1:43 pm
Forum: How To …
Topic: Using Excel to make a choice on what CheckBox to select
Replies: 7
Views: 2383

Re: Using Excel to make a choice on what CheckBox to select

@krstcs

Cool, I'll keep that in mind. :D
Why would csv be considered best practice?

Thanks!
by Djones92
Fri Aug 26, 2016 1:07 pm
Forum: How To …
Topic: Using Excel to make a choice on what CheckBox to select
Replies: 7
Views: 2383

Re: Using Excel to make a choice on what CheckBox to select

Hi asdf, I couldn't quite work out what to do in that regard, so I decided to go down the user code route- first with if statements (one column sheet), then case statements (multiple column sheet) for robustness and multiple selection capability. For future reference if anyone else needs to do this,...
by Djones92
Wed Aug 17, 2016 2:03 pm
Forum: How To …
Topic: Using Excel to make a choice on what CheckBox to select
Replies: 7
Views: 2383

Re: Using Excel to make a choice on what CheckBox to select

Thanks asdf. Attached is the kind of sheet I will be using. The Check column could range from A-D. I want to use the values in that column to select the corresponding checkbox in the application. Basic Pseudocode for concept example: if(checkVal == A) { click(BoxA); } and so on... Can I ask why your...
by Djones92
Tue Aug 16, 2016 4:05 pm
Forum: How To …
Topic: Using Excel to make a choice on what CheckBox to select
Replies: 7
Views: 2383

Using Excel to make a choice on what CheckBox to select

Hi, Running RX v.6 on a Silverlight application. I have some CheckBoxes, let's say A, B, C and D. I have a field in an Excel sheet, let's call it Choices. I have successfully read in the spreadsheet (proven through use in some steps) and now what I would like to do is use the Choices field to determ...