Search found 17 matches

by kaancha
Fri May 27, 2016 8:17 pm
Forum: General Questions
Topic: How to Refresh Excel Data Source during runtime
Replies: 1
Views: 2339

How to Refresh Excel Data Source during runtime

Here is my scenario: 1. I have a Test Case which uses Excel Data source ( c:\abc.xlsx) 2. In the spreadsheet, the column “Salary” data is binded with the module ‘SelectSalary’ 3. My another module named “UpdateExcel” opens the spreadsheet “abc.xlsx” ( which is associated with the test case too) , ch...
by kaancha
Thu Apr 14, 2016 8:46 pm
Forum: General Questions
Topic: Issue wrting data to an excel during runtime
Replies: 2
Views: 1336

Re: Issue wrting data to an excel during runtime

Thanks. the way I wrote also working now . Not sure why it didn't work earlier.
by kaancha
Thu Apr 14, 2016 2:03 pm
Forum: General Questions
Topic: Issue wrting data to an excel during runtime
Replies: 2
Views: 1336

Issue wrting data to an excel during runtime

I am using this Excel object to write data to my current spreadsheet: Excel.Application tApp = (Excel.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Excel.Application"); My Issue: It works only when I have my excel spreadsheet opened but it does not work if I do not open the spr...
by kaancha
Fri Jan 29, 2016 1:43 pm
Forum: General Questions
Topic: Get Excel cell value
Replies: 4
Views: 2500

Re: Get Excel cell value

Sorry I didn't make my question very clear. I have to use GDI capture objects to validate the MS Access Report. When I captured it, it was like this : //rawtext[@rawtext='$1,000'] Now , I am trying to make it data-driven with the Excel file. The cell value in Excel is CURRENCY formatted and displaye...
by kaancha
Thu Jan 28, 2016 9:27 pm
Forum: General Questions
Topic: Get Excel cell value
Replies: 4
Views: 2500

Get Excel cell value

Hi, I have an Excel cell value formatted to Currency so it displays as $1,000 But when Ranorex pulls the data , it pulls 1000. I have used a variable in an object to pull the value from the spreadsheet, which is like this: //rawtext[@rawtext=$Amount] The Object returns //rawtext[@rawtext='1000'] The...
by kaancha
Wed Nov 25, 2015 8:47 pm
Forum: General Questions
Topic: Can't run module group with the Runner license
Replies: 1
Views: 1147

Can't run module group with the Runner license

When I try to run the test suite with the Runner licence ( by copying *.rxtst and *.exe files), it gives the run result error like this : The module group 'XXX' (with ID {824ccc54-ca88-41e4-81a8-c87d2d576c8d}) could not be found. The same test suite, if I run from the Ranorex Studio, it just works f...
by kaancha
Fri Aug 28, 2015 5:04 pm
Forum: General Questions
Topic: Ranorex very slow with Silverlight app
Replies: 1
Views: 1284

Ranorex very slow with Silverlight app

I used Ranorex v. 5.3 to record the app developed using Silverlight. I noticed it is very very slow in identifying the objects. Sometimes it takes more than 2 minutes to record 1 line of code. The same slowness while running the scripts. I even upgraded to Ranorex v 5.4 and no change in behavior. Is...
by kaancha
Wed Jul 22, 2015 4:01 pm
Forum: Automation Tools
Topic: Columns not displayed in recording module
Replies: 5
Views: 2146

Re: Columns not displayed in recording module

I do not think the original question got answered here. I have the same question. Is there a way we can remove the "comment" column and display the 4th argument in the pane or with the 'comment' column as well? The reason I want to see all 4 arguments in the recording pane was because I want to be a...
by kaancha
Tue Jun 02, 2015 9:02 pm
Forum: General Questions
Topic: How to use a variable in xpath string
Replies: 1
Views: 9347

How to use a variable in xpath string

My Object identification is something like this;
/dom[@domain='something.com']//ul[#'bodyForm:messages']/?/?/span[@innertext~'^Hours\ per\ week:\ ''xx''\ is\ n']

How can I replace "XX" with a variable?

Thanks.
by kaancha
Tue Apr 28, 2015 4:09 pm
Forum: General Questions
Topic: Remote exection from HP ALM
Replies: 1
Views: 3259

Remote exection from HP ALM

I followed this blog and am able to run Ranorex scripts from HP ALM on the local host. http://www.ranorex.com/blog/running-ranorex-automated-tests-with-hp-quality-center But I am unable to execute from HP ALM to the remote host. Below is the error message I got on ALM Status while trying to run on r...
by kaancha
Fri Apr 17, 2015 7:54 pm
Forum: General Questions
Topic: Iterate only modules within a test case
Replies: 6
Views: 2185

Re: Iterate only modules within a test case

Sorry for my confusion. Actually, the Setup and the Teardown should be outside of the TC ( Test Case).
This solves my problem. Thanks.
by kaancha
Fri Apr 17, 2015 6:05 pm
Forum: General Questions
Topic: Iterate only modules within a test case
Replies: 6
Views: 2185

Re: Iterate only modules within a test case

Thank you for your quick response. In your solution, there are 3 test cases :
TC 1 : Setup >> Login
TC 2 : Modules where you suggested to iterate data
TC 3: TearDown >> Logout


My question was, is it possible within ONE test case?

Thanks.
by kaancha
Fri Apr 17, 2015 5:37 pm
Forum: General Questions
Topic: Iterate only modules within a test case
Replies: 6
Views: 2185

Iterate only modules within a test case

I want to set up my test to run Login one time; the modules to do stuff multiple times; Logout one time.
Can that be all in one test case without having to write user codes?

Thanks,
by kaancha
Fri Apr 10, 2015 1:17 pm
Forum: General Questions
Topic: Ranorex report with Test case name
Replies: 5
Views: 2137

Re: Ranorex report with Test case name

Hi Markus, Does it matter how I run my test ? My question was, is there a way to display the 'Test case name' in my test report. It seems like Ranorex does not have that option built-in. Here are all the options available: (for example: %S_%Y%M%D_%T_%L_%R_%H_%X.rxlog). I understand that it does not ...
by kaancha
Wed Apr 08, 2015 8:42 pm
Forum: General Questions
Topic: Ranorex report with Test case name
Replies: 5
Views: 2137

Re: Ranorex report with Test case name

If I choose to run only ONE test case at a time, Is it possible to display that name on the .rxlog file? For example: Current displayed format is something like this: TestSuiteName_20150403_211142.rxlog Is it possible to replace it with something like this ? TestSuiteName_20150403_TestCaseName.rxlog...