Search found 34 matches

by diogogmaio
Mon Jan 18, 2021 10:43 pm
Forum: How To …
Topic: Compare excel files fail because Excel app changed
Replies: 0
Views: 1254

Compare excel files fail because Excel app changed

Hello everyone, 1) My code: /* * Created by Ranorex * User: **** * Date: 12/23/2020 * Time: 4:14 PM * * To change this template use Tools > Options > Coding > Edit standard headers. */ using System; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; using Syst...
by diogogmaio
Wed Feb 07, 2018 12:55 pm
Forum: How To …
Topic: Compare Files (like CSV)
Replies: 3
Views: 2347

Re: Compare Files (like CSV)

I am using like a Ranorex + DiffMerge combo because i need to see the differences between the compared files and extract them to a file/report. Can't just compare them because sometimes one line is missing but the rest of the file is 100% ok. I need to isolate the line and discover why it's missing ...
by diogogmaio
Wed Feb 07, 2018 11:08 am
Forum: How To …
Topic: Compare Files (like CSV)
Replies: 3
Views: 2347

Compare Files (like CSV)

Hello everyone, :D I have multiple modules to compare CSV and Excel files but sometimes the validation only checks if the files have the same size/lines/columns/values...accuracy. But i want a deeper report . Something like the Compare plugin from Notepad++. In this case, if only one line is missing...
by diogogmaio
Mon Nov 28, 2016 3:52 pm
Forum: Mobile Testing
Topic: Ranorex automating Firefox mobile apk browser elements
Replies: 5
Views: 2323

Re: Ranorex automating Firefox mobile apk browser elements

I can understand that.
The truth is that if the user wants to see their website on firefox android and test it.
They cannot!

So it is a limitation...even if it is not a Ranorex related one.
by diogogmaio
Mon Nov 21, 2016 5:50 pm
Forum: Mobile Testing
Topic: Ranorex automating Firefox mobile apk browser elements
Replies: 5
Views: 2323

Re: Ranorex automating Firefox mobile apk browser elements

Impossible and a big limitation.

Thanks for the support
by diogogmaio
Fri Nov 18, 2016 3:25 pm
Forum: Mobile Testing
Topic: Ranorex automating Firefox mobile apk browser elements
Replies: 5
Views: 2323

Re: Ranorex automating Firefox mobile apk browser elements

Yes and it is not possible.
Sadly.
All the browser apps should be the same...chrome, dolphin and so on :S
by diogogmaio
Thu Nov 17, 2016 12:47 pm
Forum: Mobile Testing
Topic: Cannot get the ressource id of Android elements with Ranorex
Replies: 6
Views: 2945

Re: Cannot get the ressource id of Android elements with Ranorex

This solution work for automating firefox apk mobile?
by diogogmaio
Thu Nov 17, 2016 12:33 pm
Forum: Mobile Testing
Topic: Ranorex automating Firefox mobile apk browser elements
Replies: 5
Views: 2323

Ranorex automating Firefox mobile apk browser elements

Is it possible? For my company this is extremely relevant in the near future and to accept the tool in a wider scope. I know that you can automate through the browser Rx but i am talking about instrumenting the firefox app and then validate like the same way of the browser RX...images, text and so o...
by diogogmaio
Fri Jul 29, 2016 10:18 am
Forum: How To …
Topic: How to compare graphs inside excel files
Replies: 1
Views: 1975

How to compare graphs inside excel files

Hello everyone Just done with comparing excel files running a ranorex script that compares cell by cell, row by row and column by column and it works great. Now, i am in the need to enhance the script. I want to understand if through exceldataconnector or something related I can compare graphics ins...
by diogogmaio
Mon Jul 18, 2016 11:26 am
Forum: How To …
Topic: Excel sheet names
Replies: 11
Views: 2884

Re: Excel sheet names

I am facing now a different issue.

How can I compare a merged cell in two different excel files?

When it compares (despite being the same) an error is produced due to the merged cell.

Thanks
by diogogmaio
Wed Jul 06, 2016 10:31 am
Forum: How To …
Topic: Excel sheet names
Replies: 11
Views: 2884

Re: Excel sheet names

This line of code creates the array that will be used to store the worksheet names. I would suggest having a look at the Arrays Tutorial from Microsoft in order to develop a general understanding of how arrays work. Ok. I do understand in fact and i am very thankfull. So if i understood correctly w...
by diogogmaio
Tue Jul 05, 2016 6:06 pm
Forum: How To …
Topic: Excel sheet names
Replies: 11
Views: 2884

Re: Excel sheet names

You could try storing the worksheet names to an array. Please have a look at the sample code below. Furthermore, you will need to reference the Microsoft.Office.Tools.Excel DLL to your project and include the namespace in the corresponding class. Excel.Application excelApp = new Excel.ApplicationCl...
by diogogmaio
Tue Jul 05, 2016 2:24 pm
Forum: General Questions
Topic: Error when comparing larger
Replies: 4
Views: 1342

Re: Error when comparing larger

I understand.

I have one more doubt.

http://www.ranorex.com/Documentation/Ra ... tNames.htm

I cannot put this to work in my code.

I want to load the file...then retrieve the worksheet names. How can I do this?
by diogogmaio
Tue Jul 05, 2016 1:31 pm
Forum: How To …
Topic: Excel sheet names
Replies: 11
Views: 2884

Re: Excel sheet names

This post seems to cover your needs. http://stackoverflow.com/questions/18788091/get-all-worksheet-names-in-plaintext-from-excel-with-c-sharp-interop Basically what you need to do is get the worksheet names beforehand and open the ExcelDataConnector with the given values as needed. Can you help con...
by diogogmaio
Mon Jul 04, 2016 5:58 pm
Forum: How To …
Topic: Excel sheet names
Replies: 11
Views: 2884

Re: Excel sheet names

This post seems to cover your needs. http://stackoverflow.com/questions/18788091/get-all-worksheet-names-in-plaintext-from-excel-with-c-sharp-interop Basically what you need to do is get the worksheet names beforehand and open the ExcelDataConnector with the given values as needed. Do we had this b...