Search found 112 matches

by marcushe
Mon Apr 21, 2014 3:55 am
Forum: General Questions
Topic: About win8 APP quit
Replies: 1
Views: 1458

About win8 APP quit

Environment: Win8.1 Pro En,64bit; Ranorex 4.1.5 A non-metro APP(Desktop version), Ranorex script(for UI) issue: our tested product quit intermittently our reference:www.ranorex.com/forum/cannot-identify-the-mulit-layer-listitem-t4156.html Description: When my testing is going on our product , interm...
by marcushe
Thu Dec 19, 2013 8:30 am
Forum: General Questions
Topic: On Win8 metro, compiled exe file couldn't recognize
Replies: 1
Views: 1628

On Win8 metro, compiled exe file couldn't recognize

Environment: Win8 En,64bit Tried Tool:Ranorex4.0.4/4.1.4 Steps: 1. we have a installed Metro APP 2. writed a Ranorex script & compile 3. Executed .exe 4. Script was searching for a button, however ,after timeout , it failed. In log , it 's stating no button was found with that Ranorex path. 4-- then...
by marcushe
Tue Sep 24, 2013 10:05 am
Forum: General Questions
Topic: Any way to skip DotNet3.5 installation on Win8(Run without )
Replies: 1
Views: 2096

Re: Any way to skip DotNet3.5 installation on Win8(Run without )

I've dealt with it. Now i can install Net3.5 without net connected.
by marcushe
Tue Sep 24, 2013 8:40 am
Forum: General Questions
Topic: Any way to skip DotNet3.5 installation on Win8(Run without )
Replies: 1
Views: 2096

Any way to skip DotNet3.5 installation on Win8(Run without )

When try to install/run Ranorex4.x on Win8, i'm been always asked to install DotNet3.5. I know Win7 is ship with built-in DotNet3.5, however , we have to test on Win8 and take much time to install this bad guy with net connected. Is there any way to go around this installation when i want to run wri...
by marcushe
Tue Mar 27, 2012 3:40 am
Forum: General Questions
Topic: Can i save data when test case finishs. V3.2.2
Replies: 5
Views: 1871

Re: Can i save data when test case finishs. V3.2.2

Hi, Please try the following code to save it back to the test suite file. TestCase.Current.DataContext.SetParameter("yourParamName","yourValue"); var testSuite = TestSuite.Current as TestSuite; testSuite.FileName = testSuite.Name + ".rxtst"; testSuite.SaveToFile(null, false); Regards, Peter Ranorex...
by marcushe
Mon Mar 26, 2012 3:06 am
Forum: General Questions
Topic: Can i save data when test case finishs. V3.2.2
Replies: 5
Views: 1871

Re: Can i save data when test case finishs. V3.2.2

Hi, When the test case finished , On data binding, i found the updated data and the new parameter are not saved into test case. Do you want to store the new parameter directly into your test case (Test Suite file) or do you want to use the param just at runtime? Regards, Peter Ranorex Team I want t...
by marcushe
Fri Mar 23, 2012 8:02 am
Forum: General Questions
Topic: Can i save data when test case finishs. V3.2.2
Replies: 5
Views: 1871

Can i save data when test case finishs. V3.2.2

In V3.xx you have introduced data-driven mechanism . However ,i don't know whether i can update a simple data table and then save it . Next time this case is invoked again ,i want to use the stored data. For instance, 1. In a test case , i created a simple data table with a row of data and a paramet...
by marcushe
Tue Dec 28, 2010 1:14 am
Forum: Automation Discussions
Topic: How about --time
Replies: 2
Views: 2954

Re: How about --time

Thanks,Michael.
We have a task is to launch all programs except OS-relative(Many are not our products and are beyond our conjecture) ,then close them . but it's a bit troublesome to find which window is new created .
by marcushe
Mon Dec 27, 2010 9:50 am
Forum: Automation Discussions
Topic: How about --time
Replies: 2
Views: 2954

How about --time

Many times ,i need to get all forms at local at a time ,then compare them with those gotten latter to find which forms are new created when we use a intelligent and plausible measure . How about to supplement a time property to element ,which represent at what time it is created (like time elapsed a...
by marcushe
Fri Jan 22, 2010 3:08 am
Forum: General Questions
Topic: Can i automatically install Ranorex?
Replies: 2
Views: 3652

Re: Can i automatically install Ranorex?

Thanks ,guys. thanks for your greate effort.
by marcushe
Fri Jan 15, 2010 7:43 am
Forum: General Questions
Topic: get a seperate info in ListItem,
Replies: 1
Views: 1887

get a seperate info in ListItem,

sometimes ,listitem contains many seperate field, while we can only get the whole row of listitem, any way to get the seperate field??
As a listitem like :
Drive Letter Label Free Sace Size
D: Label1 2.2G 20G

i need each info to use.
by marcushe
Tue Jan 12, 2010 10:22 am
Forum: General Questions
Topic: Can i automatically install Ranorex?
Replies: 2
Views: 3652

Can i automatically install Ranorex?

For some reasons,i need to setup ranorex silently. Can i do it?? just like autounattend.xml for Windows
by marcushe
Fri Jan 08, 2010 2:24 am
Forum: General Questions
Topic: Can i add an event to my program??
Replies: 2
Views: 2065

Re: Can i add an event to my program??

Thanks ,i got it
by marcushe
Fri Jan 08, 2010 2:09 am
Forum: General Questions
Topic: localized Rxpath, a little problem
Replies: 2
Views: 2095

Re: localized Rxpath, a little problem

I understand, thanks. It's not the fault of Ranorex.
by marcushe
Thu Jan 07, 2010 10:13 am
Forum: General Questions
Topic: Can i add an event to my program??
Replies: 2
Views: 2065

Can i add an event to my program??

I created a form project and tries to add an OnClosing/OnClosed event to it, but on Properties pane for main form,there is no event item. Does this mean i can not add events from GUI??