Search found 53 matches

by manish
Wed Mar 03, 2021 2:17 pm
Forum: Automation Tools
Topic: Testreport not complete
Replies: 2
Views: 1208

Re: Testreport not complete

On the very last step try to use this

Code: Select all

Ranorex.Core.Reporting.TestReport.SaveReport();
Then attach it to your JIRA issue.
by manish
Wed Mar 03, 2021 2:10 pm
Forum: Automation Tools
Topic: Event handling
Replies: 2
Views: 1294

Event handling

Hi,

Is there something like OnError() or OnFail() event generated by ranorex which is trigerred that can be used to execute some commands after an error or failure is encountered. I do not want to use teardown method.

Thank you
Manish
by manish
Wed Feb 24, 2021 10:31 am
Forum: Automation API
Topic: iterate through h2tag elements and get innertext!
Replies: 0
Views: 1335

Re: iterate through h2tag elements and get innertext!

Hi, Could you try using the Find to get all H2Tags from your repo element. Something like this var repo = BottomLineIIRepository.Instance; var acclist = repo.DigitalBanking.Accounts.acclist; Report.Log(ReportLevel.Info,"starting test"); IList<Ranorex.H2Tag> accnamelist = repo.DigitalBanking.Accounts...
by manish
Wed Feb 24, 2021 10:12 am
Forum: Object Identification and Technologies
Topic: Retry count option does not work with Stop error behavior
Replies: 1
Views: 1332

Re: Retry count option does not work with Stop error behavior

Hi,

Do you have a setup section inside of the testcase and it fails there? In that case, the testcase execution stops completely.

Thanks
Manish
by manish
Wed Feb 24, 2021 10:08 am
Forum: Object Identification and Technologies
Topic: RX path - get by WinForm elem name
Replies: 3
Views: 1448

Re: RX path - get by WinForm elem name

Hi, It is really difficult to guess anything here without a snapshot of the problematic element. Winforms work in generally the same way as other UI elements. You have to use the SPY to check the predicates for rxpath. One suggestion would be something like /form[@title='form title']/.//tagname[@tex...
by manish
Wed Feb 17, 2021 10:15 pm
Forum: Ranorex Certification
Topic: Question regarding Exam format?
Replies: 1
Views: 6196

Question regarding Exam format?

Hello, In the Ranoorex certification 9.0 syllabus it states "The exam is conducted online and consists of 70 questions from a total pool of approx. 120 questions. From the 70 questions, 50 are fixed and 20 are random." I am a bit confused by the second sentence. What does fixed and random questions ...
by manish
Thu Dec 05, 2019 12:21 pm
Forum: General Questions
Topic: Not able to drag and rearrange modules in test suite
Replies: 1
Views: 948

Not able to drag and rearrange modules in test suite

Hi All, I recently upgraded to Ranorex 9.2 and it seems that I no longer am able to select a module and move it in the Test suite to rearrange the order of tests. Did something change or does something new has to be done to get the test modules moving again? I can do cut, copy and paste but the good...
by manish
Tue Sep 24, 2019 2:46 pm
Forum: General Questions
Topic: Testing Web pages on Mobile devices and PCs simultaneously
Replies: 1
Views: 1055

Testing Web pages on Mobile devices and PCs simultaneously

Hello Everyone, I have been testing a web application on my workstation for quite sometime now. Recently, I got to know that I need to test the same web application on mobile devices such as tablets and mobile phones. I have already worked on automation of mobile apps but have never done this kind o...
by manish
Tue Sep 03, 2019 3:07 pm
Forum: General Questions
Topic: Path not recognized with variables
Replies: 7
Views: 1757

Re: Path not recognized with variables

Hi,

Are you sure that you have uploaded the snapshot for the correct form because the form in question is /form[@title~'^Select\ the\ Default\ item\ '] whereas the snapshot has /form[@title>'Select the Default Meter Program'].

Please check.

Cheers
Manish
by manish
Fri Jul 26, 2019 10:00 am
Forum: Automation Tools
Topic: Test-Suite mit verschiedenen Browsern
Replies: 7
Views: 1471

Re: Test-Suite mit verschiedenen Browsern

Hi, Your Chrome browser is not instrumented by ranorex and the snapshot shows a message for Browser not being instrumented. This can cause Ranorex Spy to not identify elements properly. Could you please run the instrumentation wizard for Chrome and upload the snapshot again Guide for instrumentation...
by manish
Wed Jul 24, 2019 1:55 pm
Forum: Automation Tools
Topic: Test-Suite mit verschiedenen Browsern
Replies: 7
Views: 1471

Re: Test-Suite mit verschiedenen Browsern

HI, Could you upload one more snapshot in Chrome browser so that we can compare and see the changes for both IE and Chrome. If the structure remians the same in both IE and Chrome, could you try the below RxPath /form[@processname='chrome' or @processname='iexplore']/element[@class='WorkerW']/.//ele...
by manish
Wed Jul 24, 2019 1:37 pm
Forum: General Questions
Topic: The else block is not getting executed
Replies: 1
Views: 1017

Re: The else block is not getting executed

Hi, It could happen that the if condition is evaluated before the repo item SaveSmallSampleClickOK becomes available or starts to Exist. You could wait for the element to become visible and evaluate the Exists() condition such as this: public bool smallSamplePopUp() { try { if(repo.Fusion.SaveSmallS...
by manish
Wed Jul 24, 2019 7:48 am
Forum: General Questions
Topic: Copy from csv file to excel worksheet
Replies: 2
Views: 1047

Re: Copy from csv file to excel worksheet

HI, You can try the below solution string inputFilepath = @"C:\Temp\output.csv"; string outputFilepath= @"C:\temp\testtable.xlsx"; Microsoft.Office.Interop.Excel.Application app = new Microsoft.Office.Interop.Excel.ApplicationClass(); Microsoft.Office.Interop.Excel.Workbook wb = app.Workbooks.Open(i...
by manish
Wed Jul 24, 2019 7:39 am
Forum: General Questions
Topic: Save an excel file to a csv file
Replies: 4
Views: 2359

Re: Save an excel file to a csv file

Hi,

Do you use .xls or .xlsx file extension for the excel sheet you are using?

Once you save the file as .xlsx, it should work fine.
by manish
Tue Jul 23, 2019 2:06 pm
Forum: Automation Tools
Topic: How to put Sysdate to a cell field
Replies: 12
Views: 1645

Re: How to put Sysdate to a cell field

HI, The only fields that I can see that correspond to the date values are Text and Name and there is no field that identifies the cell to be read only. I have a few questions. Does the cell become active only after you click on it? Is the value filled by you manually or is it filled automatically by...