Search found 14 matches

by blackout
Wed Jun 10, 2015 1:09 pm
Forum: Automation API
Topic: Mouse moves to top left of screen
Replies: 9
Views: 4487

Re: Mouse moves to top left of screen

Thanks for that, and my apologies. In the earlier answers it said to 'Right click the item' within the repo, not the application or rooted folder in question thus I couldn't find the option. That being said, it appears that I've had this set to 'False' from the get-go, and thus the caching doesn't s...
by blackout
Tue Jun 09, 2015 6:57 pm
Forum: Automation API
Topic: Mouse moves to top left of screen
Replies: 9
Views: 4487

Re: Mouse moves to top left of screen

Hi there,

Aware this is quite an old thread, however this is still occurring to myself. There's no longer the option of turning the caching off (in code or in Ranorex Spy) that I can see and thus I have no idea how to resolve this.

Any and all help would be greatly appreciated.

Kind Regards.
by blackout
Thu Aug 01, 2013 11:55 am
Forum: Automation Tools
Topic: Intermittent error
Replies: 3
Views: 2004

Re: Intermittent error

Could be a timing thing whereby it was searched for prior to the element being loaded.

Shove in a WaitForPageLoad or delay the search/validation for like 1000-2000ms and you'll probably be golden.
by blackout
Mon Jul 01, 2013 4:40 pm
Forum: General Questions
Topic: An element's type
Replies: 2
Views: 2341

Re: An element's type

Can't you just add the element you want to check to your repository, then run a validate.istrue against the repo item 'type'?

e.g

Code: Select all

Validate.IsTrue(repo.folder.textbox.type.equals("test"));
by blackout
Thu May 16, 2013 6:16 pm
Forum: General Questions
Topic: Add Regular Expression when using a Variable
Replies: 21
Views: 12598

Re: Add Regular Expression when using a Variable

Thanks Markus, I had actually edited the post prior to your response stating what you said, haha. You were spot on ;-) Funny you should actually say set a longer timeout, possibly around 5000...as due to the fact I couldn't get this working initially, I set a delay with duration 5000 to replace it. ...
by blackout
Wed May 15, 2013 6:26 pm
Forum: General Questions
Topic: Add Regular Expression when using a Variable
Replies: 21
Views: 12598

Re: Add Regular Expression when using a Variable

Guys, thought I'd revive this thread as it's almost exactly what I'm after...and I seen a screenshot that was EXACTLY what I was after...but then nothing came of it. I've got my head around repository variables for the most part (I think) but there's a scenario whereby the variable is in the domain....
by blackout
Tue May 14, 2013 6:31 pm
Forum: General Questions
Topic: Override Reason Popup not working
Replies: 9
Views: 1878

Re: Override Reason Popup not working

if it's the changing/dynamic ID that's giving you the grief, you can always set the repository item XPath where this random ID is situated from: [#'exampleID12345'] which I'm imagining it to display as, to: [@id~'.*'] This should equate to "For any value of 'id' in this location"...unless I'm mistak...
by blackout
Fri May 03, 2013 2:49 pm
Forum: General Questions
Topic: Manipulating RxPath for List purposes
Replies: 3
Views: 1718

Re: Manipulating RxPath for List purposes

Sorry if I wasn't very precise in my explanation of the problem...no, they are all in the same FOLDER, but they are separate items within the repository folder. Also, I'm trying to avoid external data sources as the only thing I plan on updating is Ranorex, not an external source also. Cheers. *EDIT...
by blackout
Wed May 01, 2013 4:23 pm
Forum: General Questions
Topic: Manipulating RxPath for List purposes
Replies: 3
Views: 1718

Manipulating RxPath for List purposes

Sorry to bother you all again, but this is sort of linked to problem I posted (and sort of resolved myself with a little help from gannias ) yesterday: Here Again, it's to do with all of the images that I have floating around in a single root folders in my repository, although these all appear on 'd...
by blackout
Wed May 01, 2013 12:36 pm
Forum: General Questions
Topic: Selecting first repository item [SOVLED...ish]
Replies: 3
Views: 2095

Re: Selecting first repository item

Ok, I've figured out how to do it...but not really in the way I wanted to do it. Rather than selecting the first item in my repository folder, I've modified the image RxPaths in the repository itself. They now aren't using their specific names, but instead using a rooted folder to link to a precedin...
by blackout
Wed May 01, 2013 11:15 am
Forum: General Questions
Topic: Selecting first repository item [SOVLED...ish]
Replies: 3
Views: 2095

Re: Selecting first repository item

Thanks Gannias, I hadn't as, due to this being the 'last' folder, it wasn't a rooted folder, just a simple folder. You can only get the Self command for rooted folders. I'll try playing around with the folder and seeing if it's too much work to get everything re-arranged into a rooted folder and giv...
by blackout
Tue Apr 30, 2013 4:07 pm
Forum: General Questions
Topic: Selecting first repository item [SOVLED...ish]
Replies: 3
Views: 2095

Selecting first repository item [SOVLED...ish]

Hi guys, I've asked a question on here before and got a prompt and helpful response that led me to resolving my issue in a more roundabout fashion, so I thought I'd give another question bash (^_^) Issue: OK, I have my repository broken down into lots of folders as there are constant changes all ove...
by blackout
Fri Mar 15, 2013 4:23 pm
Forum: Automation API
Topic: Clicking and comparing images from multiple websites
Replies: 3
Views: 2823

Re: Clicking and comparing images from multiple websites

Thanks Markus, you're 100% correct. That initial code for the image list worked perfect and just hearing it from another person, I'm not sure what I was thinking... Regarding the image comparison, the reason I'm having difficulty in how I'm approaching it, is because I don't know which image will be...
by blackout
Thu Mar 14, 2013 10:18 am
Forum: Automation API
Topic: Clicking and comparing images from multiple websites
Replies: 3
Views: 2823

Clicking and comparing images from multiple websites

Hi guys, I'm in the process of trying to figure how to make the automation find all the HTML image tags in a set section and clicking on the image; there's a built in loop so that it navigates back to the same page ready to click on the next image tag. Once on the new page, I'm then trying to compar...