Interview Questions

User-defined function that would write to the Print-log as well as write to a file

Mercury WinRunner FAQ


(Continued from previous question...)

User-defined function that would write to the Print-log as well as write to a file

function writeLog(in strMessage){
    file_open("C:\FilePath\...");
    file_printf(strMessage);
    printf(strMessage);
}

(Continued on next question...)

Other Interview Questions