Search found 11 matches

by HuongTT
Thu Dec 08, 2016 10:15 am
Forum: General Questions
Topic: Not find element which Exist in Web.
Replies: 5
Views: 1370

Re: Not find element which Exist in Web.

Please help me. I can not upload Snapshot to here because it has information about our company & Project. I installed Ranorex trial version 6.0.2 on November. I created 20 test case and it run ok.(record & play & user code) Our company just extend license to end of December on yesterday, I execute r...
by HuongTT
Thu Dec 08, 2016 4:08 am
Forum: General Questions
Topic: Not find element which Exist in Web.
Replies: 5
Views: 1370

Re: Not find element which Exist in Web.

Thank for answer me. Im sorry, this is the first time I attached img and xpath. I dont know this is correct way or not. xpath for Item which I want to click on: /dom[@domain='URL']/dom[@domain='URL']/?/?/a[@innertext='・Content list ' and @enabled='True'] After InPut user / password then click on Log...
by HuongTT
Wed Dec 07, 2016 11:54 am
Forum: General Questions
Topic: Not find element which Exist in Web.
Replies: 5
Views: 1370

Not find element which Exist in Web.

I work on Ranorex 6.1.1 JP version. I have a test case. - Open IE (tab1) - Input User/Password -> click on Login => It will auto display other IE(tab2) and close tab1 - In IE(tab2), I use waitToExist and found Element A. - Click on Element A => it make error message: Can not find Element A. I don't ...
by HuongTT
Wed Nov 30, 2016 4:54 am
Forum: General Questions
Topic: Search Timeout
Replies: 3
Views: 3016

Re: Search Timeout

Thank you for your answer. I can handle search timeout problem now. repoDetailTableInfo.Exists(5000) work well. My problem now: It's ok for message box which I know exactly when it may occur. But, How to handle error message bog if I don't know when it will occur? It may occur during process or not....
by HuongTT
Tue Nov 29, 2016 4:54 am
Forum: General Questions
Topic: Search Timeout
Replies: 3
Views: 3016

Search Timeout

I use Ranorex 6.0.1 on Window 7-JP. 1. I have a problem when handle exception. In case click on a button, It may display message box or not. I use try/catch to find message box but timeout to find messagebox is too long (about 1min) I try to change search timeout in setting but it did not work. I tr...
by HuongTT
Thu Sep 29, 2016 11:19 am
Forum: General Questions
Topic: Report test result to Customer.
Replies: 2
Views: 1248

Re: Report test result to Customer.

Thank you for your idea, I will try.
by HuongTT
Thu Sep 29, 2016 4:16 am
Forum: General Questions
Topic: Report test result to Customer.
Replies: 2
Views: 1248

Report test result to Customer.

Im using Ranorex 6.0.0 on Window7 -64bit - JP
I create a Project to test an application for my customer from other country.
Is there any way to report test result to customer a "something" or type of report which customer can run again and see the result without install Ranorex?
Thank you.
by HuongTT
Tue Sep 20, 2016 9:12 am
Forum: General Questions
Topic: Fail when run UserCodeModule
Replies: 7
Views: 1845

Re: Fail when run UserCodeModule

Thank you for your answer. Im using Ranorex version 6.0. Im new in Ranorex, then I dont know exactly what I must to prepare to run code. Can you show me where to set xpath for MyApp? I don't see it in Guide line : lesson-7-code-modules. When I write "repo." => Edit area will display app to choice. ...
by HuongTT
Tue Sep 20, 2016 8:40 am
Forum: General Questions
Topic: Fail when run UserCodeModule
Replies: 7
Views: 1845

Re: Fail when run UserCodeModule

Speedboat wrote:Hi

When I use the repository in code modules I would expect to declare the repository instance
"public static " as it is done automatically in Recording.cs files:

public static YourRepository repo = YourRepository.Instance;

may be this helps.
Thank you but it does not work on my code.
by HuongTT
Tue Sep 20, 2016 8:09 am
Forum: General Questions
Topic: Fail when run UserCodeModule
Replies: 7
Views: 1845

Re: Fail when run UserCodeModule

Hi, Without seeing your solution and your app under test, it's pretty hard to suggest what's wrong. Also, you forgot to mention Ranorex version you are using! Are you sure the app under test is started at a time of running the code module? Additionally, make sure the xpath behind the repo.MyApp is ...
by HuongTT
Thu Sep 15, 2016 4:04 am
Forum: General Questions
Topic: Fail when run UserCodeModule
Replies: 7
Views: 1845

Fail when run UserCodeModule

Hi, Im beginer at Ranorex. I created UserCodeModule with sample: public class UserCodeModule1 : ITestModule { SampleRepository repo = SampleRepository.Instance; public UserCodeModule1() { // Do not delete - a parameterless constructor is required! } void ITestModule.Run() { Mouse.DefaultMoveTime = 3...