Search found 28 matches

by zshadow
Thu Jun 04, 2015 7:26 pm
Forum: Automation Discussions
Topic: Model Based Testing with Ranorex and spec explorer
Replies: 0
Views: 2497

Model Based Testing with Ranorex and spec explorer

Hi,

I was wondering if anyone within the Ranorex Testing community has used ranorex to do model based testing.
If so what tools did you use and how effective was it, please ?

Thanks
by zshadow
Fri May 01, 2015 7:24 pm
Forum: Automation Tools
Topic: Not able to perform click operation
Replies: 24
Views: 6904

Re: Not able to perform click operation

Hi, We are seeing the same problem with click on a virtual box VM, however the click works fine on the one of our older VM with the same configuration, but click does not work on our newly created virtual box VM, also perform click works ok on the new VM. We were wondering if you had found a solutio...
by zshadow
Thu Apr 30, 2015 7:33 pm
Forum: Object Identification and Technologies
Topic: Ranorex Reports incorrect Mouse Click Behaviour
Replies: 1
Views: 1670

Ranorex Reports incorrect Mouse Click Behaviour

Hi, I have a problem where when I run a test ranorex report says it has successfully clicked a button. However in reality it hasn't clicked the button as I am still on the same screen, whereas if the button was clicked I would have moved to another page. Does anyone know what may cause this and how ...
by zshadow
Fri Apr 10, 2015 8:30 pm
Forum: General Questions
Topic: 'Init' does not exist in the current context (CS0103)
Replies: 3
Views: 4384

Re: 'Init' does not exist in the current context (CS0103)

Hi Robert,

I did rename the tests, and I have cleaned and rebuilt the solution, but I still get the same problem, is there anywhere else the original file may be held?

Thanks
by zshadow
Thu Apr 09, 2015 9:10 pm
Forum: General Questions
Topic: 'Init' does not exist in the current context (CS0103)
Replies: 3
Views: 4384

'Init' does not exist in the current context (CS0103)

Hi, I am getting the error : The name 'Init' does not exist in the current context (CS0103) ExitSDDSession.usercode: public partial class ExitSDDSession { /// <summary> /// This method gets called right after the recording has been started. /// It can be used to execute recording specific initializa...
by zshadow
Sun Apr 05, 2015 12:36 pm
Forum: General Questions
Topic: Extract files from ranorex app exe file
Replies: 3
Views: 1501

Re: Extract files from ranorex app exe file

Hi,

The project is under version control but some of the files were'nt commited when the VM crashed. Also how do you include a folder back into project after it was excluded please.

Thanks
by zshadow
Sat Apr 04, 2015 6:46 pm
Forum: General Questions
Topic: Extract files from ranorex app exe file
Replies: 3
Views: 1501

Extract files from ranorex app exe file

Hi ,

Does anyone know of a tool that will extract the contents of the ranorex exe file, have tried the UniversaI Extractor tool, but did'nt extract the files.

Thanks
by zshadow
Thu Apr 02, 2015 4:02 pm
Forum: General Questions
Topic: Missing rxrec files
Replies: 1
Views: 1304

Missing rxrec files

Hi,

We have lost some of our recording files i.e rxrec , but still have the .cs and the UserCode.cs files, is it possible to generate the rxrec file from the c# code ?

Thanks
by zshadow
Tue Dec 30, 2014 6:02 pm
Forum: Object Identification and Technologies
Topic: Element enabled test in recorded test
Replies: 3
Views: 1875

Re: Element enabled test in recorded test

Hi,

I want to wait for the element to become enabled, will the validate wait for the element to become enabled?
by zshadow
Tue Dec 30, 2014 4:46 pm
Forum: Object Identification and Technologies
Topic: Element enabled test in recorded test
Replies: 3
Views: 1875

Element enabled test in recorded test

Hi,

Is it possible to check that an element is enabled and if so how would you check that, please.

thanks
by zshadow
Thu Dec 11, 2014 7:29 pm
Forum: Object Identification and Technologies
Topic: SelectTag
Replies: 14
Views: 3021

Re: SelectTag

Hi, The code below seems to be doing what I wanted, thanks for all your help. SelectTag countrySelectTag = "/dom[@domain='localhost:8080']//select[#'selectedCountry']"; OptionTag optUK = /dom[@domain='localhost:8080']//select[#'selectedCountry']/option[@value='UK:GB']"; countrySelectTag.EnsureVisibl...
by zshadow
Wed Dec 10, 2014 9:47 pm
Forum: Object Identification and Technologies
Topic: SelectTag
Replies: 14
Views: 3021

Re: SelectTag

Hi,

I have tried it manually it works fine, would my code do the same as yours ?
I have attached list containing the list of countries, to see if you could reproduce the issue.

Your help is greatly appreciated,
by zshadow
Wed Dec 10, 2014 8:23 pm
Forum: Object Identification and Technologies
Topic: SelectTag
Replies: 14
Views: 3021

Re: SelectTag

Hi krstcs, I put your original code back but it seem to select random country evry time I run the code. I get the same result when I use my code based on your idea of keypresses shown below, it may be a bug in our application, or is it something I am doing wrong? For example for this run it says its...
by zshadow
Tue Dec 09, 2014 10:39 pm
Forum: Object Identification and Technologies
Topic: SelectTag
Replies: 14
Views: 3021

Re: SelectTag

I tried that but it only seems to select the first item in the list, the selected index is set to zero, I have attached an extract of the report below, thanks. 00:01.171 Info Validation Jump to itemEdit in Spy Validating Exists on item 'SymptomDrivenDiagnostics.SelectedCountry'. 00:03.469 Info User ...
by zshadow
Tue Dec 09, 2014 9:57 pm
Forum: Object Identification and Technologies
Topic: SelectTag
Replies: 14
Views: 3021

Re: SelectTag

Sorry forgot to add the code to check for match. if (desiredIndex < selectedIndex) { for (int i = desiredIndex; i < selectedIndex; i++) { //up Report.Info("up"); Report.Log(ReportLevel.Info, "Keyboard", "Key 'Up' Press with focus on '" + selectTag.GetPath() + "'."); Keyboard.Press(System.Windows.For...