Actual Data file not populating
SOLVED- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Actual Data file not populating
I've created a test case via VBScript which is comparing actual data from an application table to an expected results csv file.
The test is creating the actual data file but it's empty. I've verified that I have the correct table name entered into my objects control file.
The only place I can see in the code that references actual data is:
Dim strDATA_TABLE_ACTUAL
call OBJ_Table_CopyToCSV( "PAGE,ACTUAL TABLE", strDATA_TABLE_ACTUAL )
call func_Compare_ActualvsExpected( strDATA_TABLE_ACTUAL, strDATA_TABLE_EXPECTED )
Does anyone know if there is another place in the code that needs to be updated? This may be my company framework specific, but I thought I'd ask before contacting my developer.
Thanks
Amy
Solved! Go to Solution.
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This does look framework specific. Specifically, if I'm reading this correctl,y OBJ_Table_CopyToCSV is a custom function that is taking the data and dumping it out to a CSV file. So, something may not be operating correctly there. This, I think, you need to take to your developer.
Robert Martin
[Hall of Fame]
Please consider giving a Kudo if I write good stuff
----
Why automate? I do automated testing because there's only so much a human being can do and remain healthy. Sleep is a requirement. So, while people sleep, automation that I create does what I've described above in order to make sure that nothing gets past the final defense of the testing group.
I love good food, good books, good friends, and good fun.
Mysterious Gremlin Master
Vegas Thrill Rider
Extensions available
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks so much for the quick response! I appreciate it.
