Search found 27 matches

by rholdberh
Thu Jan 29, 2015 4:35 pm
Forum: Bug Reports
Topic: Ranorex 5.2.2 do not recognize Chrome 40.0.2
Replies: 9
Views: 2483

Re: Ranorex 5.2.2 do not recognize 40.0.2

Works fine with IE11. I already tried to re-install plugin and i am not sure that Ranorex re-installation will help
by rholdberh
Thu Jan 29, 2015 2:27 pm
Forum: Bug Reports
Topic: Ranorex 5.2.2 do not recognize Chrome 40.0.2
Replies: 9
Views: 2483

Ranorex 5.2.2 do not recognize Chrome 40.0.2

Hi, i am having a problem with Ranorex 5.2.2 and Chrome 40.0.2. Ranorex do not see pages in Chrome, i can recognize it with track system, but after save/update it do not see it again. Extension is installed, i even tried to uninstall and install it back from the play market. Do you have any ideas ho...
by rholdberh
Fri Aug 01, 2014 8:16 am
Forum: Object Identification and Technologies
Topic: how to get true or false from validation
Replies: 4
Views: 4893

Re: how to get true or false from validation

you are right if validation fails it is breaking my test. So my solution was to use this: Validate.Options option = new Validate.Options(ReportLevel.Info); option.ExceptionOnFail=false; if(textSearchable=="y" && Validate.Attribute(repo.smthInfo, "Checked","True","",option)){ do smth } now if it fail...
by rholdberh
Thu Jul 31, 2014 1:15 pm
Forum: Object Identification and Technologies
Topic: how to get true or false from validation
Replies: 4
Views: 4893

Re: how to get true or false from validation

i have tried in such way if(textSearchable=="y" && Validate.Attribute(repo.smthInfo, "Checked","True","",true)==true){ Report.Log(ReportLevel.Info, "Yes"); } else { Report.Log(ReportLevel.Info, "No"); } but in first validation if validate.Attribute statement returns false my test fails on at Ranorex...
by rholdberh
Thu Jul 31, 2014 12:38 pm
Forum: Object Identification and Technologies
Topic: how to get true or false from validation
Replies: 4
Views: 4893

how to get true or false from validation

Hi, i want to make such validation in my test, but i cant find how to get true or flase from Validate.Attribute if(text=="test" && Validate.Attribute(repo.smth.smthInfo, "Checked","True"); ){ than bla bla bla } but i am getting syntax errors, cant convert void to bool Do you know how to solve my pro...
by rholdberh
Wed Jul 23, 2014 3:03 pm
Forum: Automation Discussions
Topic: XML validation
Replies: 1
Views: 3611

XML validation

Hi, i need some help. My application is generating XML after some wizard. And i need to verify that all values were correctly written to this XML. As i understand i can do this in 2 ways: 1. While test is running create my own XML and then just compare "my" and "application" XMLs 2. Just parse XML a...
by rholdberh
Thu May 22, 2014 10:21 am
Forum: Object Identification and Technologies
Topic: Search timeout
Replies: 1
Views: 2068

Search timeout

Hi, i am tryint to specify search timeout fot the element not to exist: Duration duration = new Duration(100); repo.IDM.NewDocumentTab.RifghtContainer.VersionsTab.VersionRowInfo.SearchTimeout = duration; if(!repo.IDM.NewDocumentTab.RifghtContainer.VersionsTab.VersionRowInfo.Exists()) { todo bla bla ...
by rholdberh
Tue May 13, 2014 10:09 am
Forum: Object Identification and Technologies
Topic: Object identification with the same hierarchy
Replies: 1
Views: 1756

Object identification with the same hierarchy

Hi, i have a small problem with object identification: My structure is: <span class="set"> <span class="requiredKey" title="Application">Application</span> <span class="value"> <input type="text" class="Textbox ""></span> </span> So, input type in the span class "value" should be identified by title...
by rholdberh
Mon Mar 31, 2014 8:27 am
Forum: Automation Tools
Topic: Ranorex 5.0.1 doesnt see Chrome 33
Replies: 5
Views: 1793

Re: Ranorex 5.0.1 doesnt see Chrome 33

Hi,
the prbolem was actually on ranorex side. We have a Java plugin, that starts when you load the page. Ranorex plugin adds an <embed> element to the page. Making it hidden with "display: none" CSS expression causes the plugin to stop working. Thats why page was not detected by the ranorex
Regards
by rholdberh
Fri Mar 28, 2014 11:32 am
Forum: Automation Tools
Topic: Ranorex 5.0.1 doesnt see Chrome 33
Replies: 5
Views: 1793

Re: Ranorex 5.0.1 doesnt see Chrome 33

AD:
after some research i found out that ranrex doesnt see only my web, with other webs its works correctly. So how it is possible that Rano see it in IE but dont see it in Chrome?
by rholdberh
Fri Mar 28, 2014 11:06 am
Forum: Automation Tools
Topic: Ranorex 5.0.1 doesnt see Chrome 33
Replies: 5
Views: 1793

Ranorex 5.0.1 doesnt see Chrome 33

Hi, i have update ranorex to 5.0.1 and from that moment he doesnt see chrome. I've tried to reinstall chrome extention but it doesnt help, i've deleted chrome and all extentions and cleaned all cache but it doesnt help also. Plug-in version 5.0.1.17706 With IE everything works fine. Do you have any ...
by rholdberh
Thu Mar 20, 2014 4:26 pm
Forum: Object Identification and Technologies
Topic: Verify, that element is visible
Replies: 1
Views: 2140

Verify, that element is visible

Hi,
i want to create, such verification:

if (element is visible) {
click on it
}
else{ nothing}

how to verify in construction if-then that element is visible?
Regards
by rholdberh
Mon Mar 17, 2014 2:24 pm
Forum: Automation Tools
Topic: Build error CS1501
Replies: 4
Views: 2372

Re: Build error CS1501

Aha..do you know antoher way to click on the button without mouse moves?
by rholdberh
Mon Mar 17, 2014 1:05 pm
Forum: Automation Tools
Topic: Build error CS1501
Replies: 4
Views: 2372

Re: Build error CS1501

I found where was the problem.
When you converting click to the user code, its taking duration time "300" and put it in .click(300).
But performClick doesnt support 300 as a value
by rholdberh
Mon Mar 17, 2014 11:08 am
Forum: Automation Tools
Topic: Build error CS1501
Replies: 4
Views: 2372

Build error CS1501

Hi, i have change all my mouse clicks to user code and change them to PerformClick. Now when i am trying to build my project i am getting : No overload for method 'PerformClick' takes 1 arguments (CS1501) - C:\..\RanorexStudio Projects\IDMExportTool\IDMExportTool\ExportTool_SearchExportFinishDownloa...