File Functions
isFile()
In a nutshell The isFile() function checks whether a specified input can be treated as a valid file object. It returns True if the input is a valid file and False otherwise. It is particularly useful before calling file functions such as ...
getFileType()
In a nutshell The getFileType() function returns the file extension of a specified file as a string. It is useful in test cases for validating that a file is of the expected type, such as txt, pdf, png, or jpeg. 1. Overview The getFileType() function ...
getFileSize()
In a nutshell The getFileSize() function returns the size of a specified file in bytes. It is useful in test cases for validating that a file has been completely downloaded, meets expected size criteria, or for triggering conditional logic based on ...
getFileName()
In a nutshell The getFileName() function returns the file name of a specified input file as a text, including its extension. It is useful in test cases for validating file naming conventions or confirming that the expected file has been retrieved or ...
getFilecontent()
In a nutshell The getFileContent() function returns the content stored in a specified input file as a text value. It is commonly used in test cases to validate file data, read values for use in conditional statements or variable assignments, or check ...
File Functions
1. In a nutshell Zoho QEngine provides built-in file functions that allow you to retrieve data and validate files within test scripts. 1.1 Availability These functions are available for : Files retrieved using the invoke URL method Files saved ...