bella_TL
3 years agoOccasional Contributor
How to save the Keyword Logging automatically to local automatically?
Hi All,
Usually after running Keyword Test, we will need to Export Test Results automatically to our local folder. Are there steps to let the saving be automatic?
Hi bella_TL
Yes you can write a short script routine to a desired location on your machine
Here is an example in my javascript project
function exportlog()
{
Log.SaveResultsAs("C:\\Work\\Log\\Log.xml", lsJUnit)
}You can find more examples in different languages here
KR
Vinnie