10-11-2010, 04:48 PM
Hi all
I am quite sure that there are several threads regarding test results to Excel, but what I need is the following:
For each web page or element im checking, I have the following code
Now i want to export this to an Excel sheet with 2 columns:
Column A: Page #
Column B: Status
Column C: Company name
Column D: Iteration #
How do i do this with descriptive programming ?
I am quite sure that there are several threads regarding test results to Excel, but what I need is the following:
For each web page or element im checking, I have the following code
Code:
If Browser(tBrowser).Page(tPage).Frame(tFrame).WebRadioGroup(tWebRadioGroupHEHFleksAnmod).Exist Then
reporter.ReportEvent micPass, "Page #1:","Page OK"
else
reporter.ReportEvent micPass, "Page #1:","Page Not OK"
end if
Now i want to export this to an Excel sheet with 2 columns:
Column A: Page #
Column B: Status
Column C: Company name
Column D: Iteration #
How do i do this with descriptive programming ?