Micro Focus QTP (UFT) Forums

Full Version: QTP Error Handling
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
1. If you are using function library in script but ,you forget to load the function library into script so the script failed, How can you handle this problem without stopping the execution of Script.


2. How to skip blank cells in excel during script execution.If some of the cells are blank then skip that cell and continue.


Please help me in these questions.
1) u cant add the function library without stopping
2) U can use a if function
if datatable.cell<>"" then
step to perform.
end if
Thanks babu123 for reply

In a interview the interviewer asked this question (adding function library during execution), and I said we cant add during execution but if function lib not found then we can handle it using if condition it code before it executes. But the interviewer told there are some ways for doing this without stopping the code execution.