Search found 32 matches

by Shakib
Wed Dec 05, 2018 3:25 pm
Forum: General Questions
Topic: Need to execute ranorex exe through test cases defined in TFS
Replies: 1
Views: 1020

Need to execute ranorex exe through test cases defined in TFS

Hi, Below is Actual Scenario : We have manual test cases with test steps defined in TFS and we can run those test cases manually. We need to update the result(pass or fail) for each step manually. Expected: Is it possible that ranorex execution start while running test case manually through TFS and ...
by Shakib
Wed Sep 26, 2018 10:28 am
Forum: Automation Discussions
Topic: Iterate over elements found for rooted folder
Replies: 8
Views: 2668

Re: Iterate over elements found for rooted folder

Hi,

Try to use the below code :
var thisAccountList = repo.Accounts.AccountListItem.FindChildren<Text>();

foreach(Text account in thisAccountList)
{
Report.Info(account.TextValue);
}
by Shakib
Tue Sep 25, 2018 9:51 am
Forum: General Questions
Topic: Failed to connect IPC port : Access denied error is coming when running tests from remote machine
Replies: 6
Views: 3270

Re: Failed to connect IPC port : Access denied error is coming when running tests from remote machine

Hi,

You can try to run/ execute ranorex test script on ranorex agent through parent machine instead of doing through remote desktop.

Regards,
Shakib
by Shakib
Fri Sep 21, 2018 4:14 pm
Forum: Automation Tools
Topic: Reusing Custom Reports from module library
Replies: 9
Views: 1732

Re: Reusing Custom Reports from module library

Hi, Take backup of your custom report folder. Delete the existing custom report folder. Set restore to default under properties for report. Build the solution and make sure no report error comes. Go to property and create custom report. Copy all back up files to new custom report folder. Rename if r...
by Shakib
Fri Sep 21, 2018 2:31 pm
Forum: General Questions
Topic: Adding custom properties to item in rxlog.data
Replies: 2
Views: 1220

Re: Adding custom properties to item in rxlog.data

Hi Uthappa, Anything you can add in rxlog.data with the help of xslt file. You need to check from where this method name is coming through .xslt file and do the modification there. If you want to add any message before the method name then just hard code the string in xslt file from where the method...
by Shakib
Mon Mar 26, 2018 10:04 am
Forum: How To …
Topic: Adding User Code Collection to Library
Replies: 4
Views: 5181

Re: Adding User Code Collection to Library

1. right click to user code collection
2. select 'insert new user code method".
3. make it public static.
4. save it.
5. go to the recording module.
6. click on add new action.
7. select use code
8. user defined methods will display
by Shakib
Tue Aug 01, 2017 7:15 am
Forum: General Questions
Topic: Closing TAB of an Application
Replies: 17
Views: 3301

Re: Closing TAB of an Application

Are you able to track inner window if yes then use below code:

Form currentForm=repositoryObject.innerWindowControl.Self;
currentForm.close();
by Shakib
Tue Jul 25, 2017 1:29 pm
Forum: General Questions
Topic: Need to clear static fields
Replies: 3
Views: 1457

Re: Need to clear static fields

Below are the example: Test Suite: Test Case:(4 Iteration ) UserCodeModule1 (Declare static collections/variable and stores some value which we can use in some other module for reference). UserCodemodule2(Here we can use the static collections/variables for any operation.) UserCodemodule3(Here also ...
by Shakib
Tue Jul 25, 2017 12:21 pm
Forum: General Questions
Topic: Need to clear static fields
Replies: 3
Views: 1457

Need to clear static fields

Does Ranorex provide a feature through which static fields gets cleared automatically after completion of each test case or completion of each iteration?
If yes please provide the link or solution.
by Shakib
Fri May 12, 2017 3:03 pm
Forum: General Questions
Topic: Need to pass repository object in the variable form
Replies: 1
Views: 2001

Need to pass repository object in the variable form

Hi, Let me start from example: I have 2 TextBox. Below the test suite structure for all my test case which i want to perform: Test Case 1 I want to enter value in first text box. I want to enter value in Second text box. TestCase2 I want to enter value in first text box. TestCase3 I want to enter va...
by Shakib
Tue Apr 25, 2017 2:34 pm
Forum: General Questions
Topic: Unable to work with new wpf plugin value wpfimprovedonly
Replies: 2
Views: 1559

Unable to work with new wpf plugin value wpfimprovedonly

Hi, 1. I was using 5.4.2 ranorex version earlier,now i have updated to 7.0.0. 2. After upgrade, unable to track wpf controls(like text box, buttons etc) directly instead i could have tracked the parent control only like container. 3. I found a solution in ranorex forum and i have changed the value o...
by Shakib
Thu Mar 09, 2017 2:39 pm
Forum: General Questions
Topic: New version does not support pop up watcher
Replies: 3
Views: 1633

Re: New version does not support pop up watcher

Thanks asdf its working for me now.
Thanks krstcs also :)
by Shakib
Mon Mar 06, 2017 7:26 am
Forum: General Questions
Topic: New version does not support pop up watcher
Replies: 3
Views: 1633

New version does not support pop up watcher

Hi, I have installed a new version(6.2.1) which is giving error on my existing code : 'PETNet.Olympus.Automation.UnexpectedPopups': cannot derive from sealed type 'Ranorex.PopupWatcher' (CS0509) - D:\automation\PETNet.Olympus.Automation\UnexpectedPopups.cs:15,15" I was using pop up watcher class for...
by Shakib
Thu Feb 23, 2017 7:19 am
Forum: General Questions
Topic: Need to configure ranorex license manager
Replies: 8
Views: 5254

Re: Need to configure ranorex license manager

HI, we need to configure ranorex license server manager with ranorex license file Currently we are getting a pop up which is asking for key after the ranorex license server manager installation we would want a license file like .lic how it happens in the ranorex agent in the same way we need it to s...
by Shakib
Wed Feb 15, 2017 1:37 pm
Forum: General Questions
Topic: Unable to track controls of angular application in chrome
Replies: 2
Views: 1317

Re: Unable to track controls of angular application in chrome

Yeah i have checked all plugins are installed in chrome due to that i can track other web applications in chrome but the one which i have attached is not tracking by Ranorex.