Search found 15 matches

by romainb25
Mon Jul 04, 2016 11:31 am
Forum: Automation Tools
Topic: Ranorex compatibility
Replies: 4
Views: 2049

Re: Ranorex compatibility

Even to recognize element on Word for example, doesn't work.
Sans titre.png
Here the red case can't moveand i can click everywhere but Ranorex can't recognized anything!

Help :(
by romainb25
Mon Jul 04, 2016 10:52 am
Forum: Automation Tools
Topic: Ranorex compatibility
Replies: 4
Views: 2049

Re: Ranorex compatibility

Hi,

My Ranorex version is the new 6.0. I try to launch Ranorex with administrator elevation and i have the same issue.

There are some differences with two operator systems and the same project.
I've create the project on WINXP, it works but on WIN7 some buttons are not recognized.

Thanks
Romainb25
by romainb25
Wed Jun 29, 2016 3:04 pm
Forum: Automation Tools
Topic: Ranorex compatibility
Replies: 4
Views: 2049

Ranorex compatibility

Hi community, I've create a Ranorex project on a Windows XP VM. On this VM, i have : - .NET Framework 2.0 - .NET Framework 3.0 - .NET Framework 3.5 - .NET Framework 4.0 I've export my project to a Windows 7 VM. On this VM, i have : - .NET Framework 4.0 Others versions are natives on the system. when...
by romainb25
Fri Jun 24, 2016 8:45 am
Forum: Automation Tools
Topic: If a window appear on the screen, close it
Replies: 4
Views: 2842

Re: If a window appear on the screen, close it

I tried to use this :

while(repo.Avertissement.SelfInfo.Exists(1000)) //search 1 second
{
Keyboard.Press("{Enter}");
}

because sometimes i have two warning forms so i want to close the two form at once
It close the first form but not the second form . Why ? :?

Thanks
Romainb25
by romainb25
Thu Jun 23, 2016 1:58 pm
Forum: Automation Tools
Topic: If a window appear on the screen, close it
Replies: 4
Views: 2842

If a window appear on the screen, close it

Hi community, In a test case, i have to fill a form When i try to validate it, sometimes i get a form with an error message due to bad formatting, sometimes i have no error message. I would like to do the following in my script: //validate form repo.FormBro.BitBtnOK.Click("35;13"); while(repo.Warnin...
by romainb25
Thu Jun 16, 2016 12:54 pm
Forum: Automation Tools
Topic: Select ListItem from Excel data
Replies: 3
Views: 1630

Re: Select ListItem from Excel data

I can't upload a file with xls extension in this post. My Excel column are bound to local variables pb5.png In my script i can add variable in an edit text like this: repo.Form.Text001.PressKeys(quantite); But i can't select any element in my list : repo.Form.ListView01. type? .Click("53;10"); Any i...
by romainb25
Thu Jun 16, 2016 11:15 am
Forum: Automation Tools
Topic: Select ListItem from Excel data
Replies: 3
Views: 1630

Select ListItem from Excel data

Hi community, I have a ListItem with some items inside : ListItemBOOK,ListItemBOOK2,ListItemBOOK3,ListItemBOOK4(see picture below) I have an excel file with a type column. When i launch the test case, i want to get type in my excel column and select it in my ListItem, in my script i want something l...
by romainb25
Mon May 30, 2016 11:15 am
Forum: Automation Tools
Topic: Launch a recording from a UserCode script (resolved)
Replies: 6
Views: 3827

Re: Launch a recording with data test from a UserCode script

Hi,

With the Recording.Start(); command, it runs the Recording but like odklizec said :
"If you call a Recording module directly from code, it's definitely not attached to data connector anymore"
So i have to found an other way.

Thanks
Romainb25
by romainb25
Wed May 25, 2016 1:18 pm
Forum: Automation Tools
Topic: Launch a recording from a UserCode script (resolved)
Replies: 6
Views: 3827

Re: Launch a recording with data test from a UserCode script

i have to test a print folder management software There are 4 steps to create a print folder: - Create a folder with some information - Create a print subfolder - Create a pinout subfolder - Create a routing folder For each step, i create a recording Each recording is linked to an excel data test Th...
by romainb25
Wed May 25, 2016 8:51 am
Forum: Automation Tools
Topic: Launch a recording from a UserCode script (resolved)
Replies: 6
Views: 3827

Launch a recording from a UserCode script (resolved)

Hi community, I have a little trouble. I have two recordings. Each recording is linked to excel data tests by an Excel Data Connector In each recording, i have a usercode.cs file In recording 1, i try to launch recording 2 with this command: Recording2.Start(); It run the recording2 but data tests a...
by romainb25
Tue May 24, 2016 11:30 am
Forum: Automation Tools
Topic: IF statement as Recording actions?
Replies: 4
Views: 5584

Re: IF statement as Recording actions?

It works, thank you everibody!
by romainb25
Tue May 24, 2016 11:29 am
Forum: Automation Tools
Topic: Use variable in C# script
Replies: 2
Views: 1919

Re: Use variable in C# script

Thanks @odklizec : it works!
by romainb25
Mon May 23, 2016 10:18 am
Forum: Automation Tools
Topic: Use variable in C# script
Replies: 2
Views: 1919

Use variable in C# script

Hi community, I have a recording called "TestCase1" linked to and Excel File by an Excel Data Connector called "TestCase1.xls" I create three variables in test case : name ,hasPhoneNumber and phoneNumber There is the xls view : id | name | hasPhoneNumber | phoneNumber 1| romain | yes | 0606060606 2 ...
by romainb25
Fri May 20, 2016 10:36 am
Forum: Automation Tools
Topic: IF statement as Recording actions?
Replies: 4
Views: 5584

IF statement as Recording actions?

Hi community, I have two test cases in Ranorex: -TC1: Create a non-professional account with a form RunApplication Click Login KeySequence $login Click Password KeySequence $password -TC2: Create a professional account with a form RunApplication Click Login KeySequence $login Click Password KeySeque...
by romainb25
Mon May 09, 2016 2:38 pm
Forum: Object Identification and Technologies
Topic: Set Search Timeout popup disapear
Replies: 1
Views: 1683

Set Search Timeout popup disapear

Hi community, I have and issue with Ranorex Studio 5.4.6 I've create a new recording. In this recording, i have 3 steps: - run an software with an exe file - assert : true if the main windows exists or fail if the main windows doesn't exists - close software This test pass. I want to edit the search...