Search found 14 matches

by natesun
Thu Sep 05, 2019 7:35 pm
Forum: General Questions
Topic: Best Practice to Download CSV File
Replies: 3
Views: 1790

Re: Best Practice to Download CSV File

Thanks for your reply. So I checked web element and also used spy to capture Href, this is what I see: javascript:gotoSave('J4l2%2fshDzGrqjCFL23ityxHPOBumRFm5FJN39qWd5BUQ4kIRngI%2bPx9IpC%2bxBgz74sPRGrrpRmRLX7iIl4OVng%3d%3d','import'); Not sure how to get the uri from this href, and seems like have t...
by natesun
Thu Aug 29, 2019 5:47 pm
Forum: Bug Reports
Topic: Chrome extension disappearing?
Replies: 5
Views: 2998

Re: Chrome extension disappearing?

Thanks Robin, after manually adding Ranorex extension and set instrument to false, the issue has disappeared. We directly overload OpenBrowser and set instrument as false.
Host.Local.OpenBrowser(url, browser, "", true, true, true, false, true,false);
by natesun
Thu Aug 29, 2019 5:41 pm
Forum: General Questions
Topic: Closing the Edge Browser
Replies: 3
Views: 1547

Re: Closing the Edge Browser

Hi, I have similar issues, when directly setting Host.Local.OpenBrowser() and overwrite killExisting to true, edge does not close. When trying to get doms by using Host.Local.FindChildren<Ranorex.Webdocument>(), Edge would close but opens again. Is this a bug within Ranorex or do I miss anything? Th...
by natesun
Tue Aug 27, 2019 5:50 pm
Forum: General Questions
Topic: Best Practice to Download CSV File
Replies: 3
Views: 1790

Best Practice to Download CSV File

Hi, I have several test cases that requires to download a csv file first, and then open that csv file to look for some values and compare with webpage. I know that there is a DownloadFile() under WebLibrary of Ranorex.AutomationHelpers, but this does not really apply to our application and uri is un...
by natesun
Thu Jul 25, 2019 7:53 pm
Forum: Bug Reports
Topic: Chrome extension disappearing?
Replies: 5
Views: 2998

Re: Chrome extension disappearing?

Yes, it happens to me all the time now, chrome version 75.0.3770.80. Instead of choosing install, I just directly go to App store and add again, but the part I do not understand is I have added several times never removed it, and it could happen several times per day complaining that I do not have t...
by natesun
Mon Jun 24, 2019 8:56 pm
Forum: General Questions
Topic: Unsupported HTML Tag Class
Replies: 21
Views: 5419

Re: Unsupported HTML Tag Class

Just follow myself, so I notice that chrome and IE behave differently for an attribute("aria-label") I am looking. It has value in chrome but null in IE. I am trying to execute javascript but I am wondering since I am calling from Unknown tag, how to convert to WebDocument? IList<Unknown> pathTag = ...
by natesun
Fri Jun 21, 2019 10:44 pm
Forum: General Questions
Topic: Unsupported HTML Tag Class
Replies: 21
Views: 5419

Re: Unsupported HTML Tag Class

I have similar question, but my issue is that the attribute "aria-label" I want to capture is available in chrome but not in IE. So normally I would cast the unsupport tag as Unknown and use find to specify the path. Then use Unknown.getAttribuate<string>("aria-label") to return the value, but since...
by natesun
Fri Oct 26, 2018 8:10 pm
Forum: How To …
Topic: XML file not found error while using ReportToPDF module from automation helpers.
Replies: 12
Views: 3242

Re: XML file not found error while using ReportToPDF module from automation helpers.

Hi Robin, Thanks so much for your additional explanation. It worked this time, and my confusion was the custom log relative to my style.xml not the executable. After define the relative path to executable everything worked as you said. It would be beneficial if we can add these examples to the relea...
by natesun
Tue Oct 23, 2018 6:07 pm
Forum: How To …
Topic: XML file not found error while using ReportToPDF module from automation helpers.
Replies: 12
Views: 3242

Re: XML file not found error while using ReportToPDF module from automation helpers.

Thanks so much for the help. So I finally figured out that in my VM I have to use absolute path for my logo file, but in my local relative path works just fine to bind xml custom log path. I have a structure like this in my local C:\My Project\folder1\folder2\folder3, and my xml file locates in fold...
by natesun
Mon Oct 22, 2018 4:52 pm
Forum: How To …
Topic: XML file not found error while using ReportToPDF module from automation helpers.
Replies: 12
Views: 3242

Re: XML file not found error while using ReportToPDF module from automation helpers.

Thanks for your reply Robin,

I found all the files on the VM just as if on my local machine, however, binding with xml does not seem to work in my VM environment even if custom logo path is correct.
by natesun
Fri Oct 19, 2018 8:57 pm
Forum: How To …
Topic: XML file not found error while using ReportToPDF module from automation helpers.
Replies: 12
Views: 3242

Re: XML file not found error while using ReportToPDF module from automation helpers.

I've experienced that even my path is correct and I am able to change custom logo PDF in my local environment, when running through Jenkins on other VM, the binding is just not working. If I bind xml variable, no PDF would generate.
by natesun
Fri Oct 19, 2018 3:12 pm
Forum: How To …
Topic: How to use style.xml with ReportToPDFModule
Replies: 8
Views: 2654

Re: How to use style.xml with ReportToPDFModule

Thanks Robin,

It turned out the logo path was incorrect. After rebind everything and corrected the logo path, a custom PDF was generated.
by natesun
Wed Oct 17, 2018 5:32 pm
Forum: How To …
Topic: Problem ranorex.PDF.exe
Replies: 7
Views: 3203

Re: Problem ranorex.PDF.exe

Does this module automatically generate PDF if you bind the variables? In my case, if I leave everything empty by default, it will generate pdf file. However, if I bind xml with the style.xml provided in the blog, no pdf is generated. Do I miss anything or I have to use the executable?
by natesun
Wed Oct 17, 2018 4:28 pm
Forum: How To …
Topic: How to use style.xml with ReportToPDFModule
Replies: 8
Views: 2654

Re: How to use style.xml with ReportToPDFModule

Hi Support team,

I am also trying to use ReportToPDFModule, and if I leave everything by default without binding any variable, the pdf report will be generated automatically. However, if I bind $Xml with style.xml, no pdf will be generated. Do I miss anything?