Creating Results folder
This function creates a results folder to store Results.
Dim strFolderpath, obj
strFolderpath= "C:\SampleFolder"
Set obj = Createobject("Scripting.FileSystemObject")
If obj.FolderExists(strFolderpath) = false Then
obj.CreateFolder strFolderpath
End If
Set obj = nothing
Create Report
This function creates Results file in the results folder and also adds header. Header looks as shown below one.
Steps:
This function creates a results folder to store Results.
Dim strFolderpath, obj
strFolderpath= "C:\SampleFolder"
Set obj = Createobject("Scripting.FileSystemObject")
If obj.FolderExists(strFolderpath) = false Then
obj.CreateFolder strFolderpath
End If
Set obj = nothing
Create Report
This function creates Results file in the results folder and also adds header. Header looks as shown below one.
TestCase | Expected Results | Actual Results | Status |
No comments:
Post a Comment
Note: only a member of this blog may post a comment.