Search found 14 matches

by rajeswari
Mon Nov 06, 2017 4:34 pm
Forum: General Questions
Topic: Rawtext elements not visible/tracked in SPY
Replies: 3
Views: 1692

Re: Rawtext elements not visible/tracked in SPY

Hi Mcturtle,

Thanks for response. yes i did add the root element to the GDI process, but nothing worked on the day.

Im able to see rawtext elements now. Think the restart PC made some change. But i have seen this problem often, hence i raised it here.

Thanks
Rajeswari.
by rajeswari
Wed Nov 01, 2017 5:13 pm
Forum: General Questions
Topic: Rawtext elements not visible/tracked in SPY
Replies: 3
Views: 1692

Rawtext elements not visible/tracked in SPY

Hi, I have 2 child forms(forma-notice and formb-notification) with list of elements in it, the listbox class is present to GDI capture list. (Since the individual listitem doesnot contain the text value, i need to read these elements as rawtext). Rawtext elements on forma appears fine, But the rawte...
by rajeswari
Fri Jun 23, 2017 11:46 am
Forum: General Questions
Topic: Find element under a form
Replies: 5
Views: 2846

Re: Find element under a form

Hi Vaughan,

Thanks for the suggestion, i'm using Unknown and it works fine. :).

formInfo.FindAdapter<Form>().FindDescendant<Ranorex.Unknown>("agbFindBar").Click();

Thanks
Raj
by rajeswari
Thu Jun 22, 2017 1:19 pm
Forum: General Questions
Topic: Find element under a form
Replies: 5
Views: 2846

Re: Find element under a form

Error message :-

The type 'Ranorex.Core.Element' cannot be used as type parameter 'T' in the generic type or method 'Ranorex.Adapter.FindDescendant<T>(string)'. There is no implicit reference conversion from 'Ranorex.Core.Element' to 'Ranorex.Adapter'.
by rajeswari
Thu Jun 22, 2017 1:12 pm
Forum: General Questions
Topic: how to change Ranorex Speed factor
Replies: 7
Views: 2588

Re: how to change Ranorex Speed factor

Hi McTurtle, The access violation occurs on the Client, not on the Ranorex report. I have asked for help from support, bu there is nothing in the logs/report to help. Don't know what invokes the access violation on the client, happens mostly while automation test run is entering text in a field. And...
by rajeswari
Thu Jun 22, 2017 1:06 pm
Forum: General Questions
Topic: Find element under a form
Replies: 5
Views: 2846

Find element under a form

Hi, im trying to find a particular element under a form based on the forminfo(on a windows desktop applicaiton). A similar element is present in 2 forms and based on the input forminfo find the element under that form and click on it. But the findsingle / find descendant method gives me error, pleas...
by rajeswari
Fri Apr 21, 2017 11:34 am
Forum: General Questions
Topic: how to change Ranorex Speed factor
Replies: 7
Views: 2588

Re: how to change Ranorex Speed factor

Hi McTurtle, Thanks for the suggestion on how to set global delay.speedfactor. Sorry the access violation i had on client still appears and the speed doesnt seem to be the reason(which i set thru recording module settings). i had several tries on changing the way forms and data are accessed, still n...
by rajeswari
Tue Apr 04, 2017 10:08 am
Forum: General Questions
Topic: how to change Ranorex Speed factor
Replies: 7
Views: 2588

Re: how to change Ranorex Speed factor

hi odklizec, Thanks for the response. 1. all the elements im accessing are inside forms, hence i wait for the form to appear and finish loading, then check the listitems/create/update which are visible, and active in window. These access voilation errors doesnt appear when the testing is done manual...
by rajeswari
Mon Apr 03, 2017 3:23 pm
Forum: General Questions
Topic: how to change Ranorex Speed factor
Replies: 7
Views: 2588

how to change Ranorex Speed factor

im using ranorex test-suite on an desktop application which creates / verifies data. And whenever a action is performed a notice for every action is triggered on the background. Now since the speed between my actions (mainly usercode) are fast, i get access violation error often. this error happens ...
by rajeswari
Mon Jan 23, 2017 12:49 pm
Forum: General Questions
Topic: Merge Action to Usercode adds Adapter
Replies: 6
Views: 2548

Re: Merge Action to Usercode adds Adapter

Hi David, Thanks for filling in. it was due to the arguments passed, i had the difficulty, hope there is a choice in future to convert to usercode with/ without parameters.
And Yes im following the same workaroud, copied code from module.cs and adding to usercode ( module.usercode.cs) . Thanks.
by rajeswari
Fri Jan 20, 2017 10:35 am
Forum: General Questions
Topic: Merge Action to Usercode adds Adapter
Replies: 6
Views: 2548

Re: Merge Action to Usercode adds Adapter

:| Yes i checked the link, Thanks for your reply.
by rajeswari
Thu Jan 19, 2017 4:26 pm
Forum: General Questions
Topic: Merge Action to Usercode adds Adapter
Replies: 6
Views: 2548

Merge Action to Usercode adds Adapter

Hi, I have been using Ranorex 6.0 until now, and i used to record actions and merge actions to usercode. But after the upgrade of 6.2 the merge actions to user code is adding adapters into arguments to the usercode and its different. is there any setting to return this to normal repo.frm.element typ...
by rajeswari
Tue Oct 25, 2016 3:11 pm
Forum: General Questions
Topic: Handling Recording modules under Testcase
Replies: 2
Views: 1190

Re: Handling Recording modules under Testcase

Hi , Thanks for the response. :)
Now I have converted them into Usercode in each of the 3 recording modules. If user created already - ignore the create steps.

Testcase_01
Recoding module_1- Create User1
Recoding module_2- Create User2
Recoding module_3 - Create User3
by rajeswari
Tue Oct 18, 2016 12:12 pm
Forum: General Questions
Topic: Handling Recording modules under Testcase
Replies: 2
Views: 1190

Handling Recording modules under Testcase

Hi I have 3 recording modules under a Testcase E.g Testcase-Pre-req has recoding 3 different recording modules to create 3 different users. Now in each of the recoding module i check if the user exists already before creating, if i want to stop only one recording module and continue with the other, ...