|
下面这段话可能对您解决问题有帮助:
During the test run, the Oracle Add-in waits for each statement to complete before continuing. If an operation is not completed within the default timeout, an error message "AUT is not responding. Try to increase the timeout control variable." is displayed. This may occur when slow server response is encountered.
Workaround: Increase the timeout from the default 20 seconds, using the following statement:
set_aut_var("timeout_for_object_state", <timeout in milliseconds>);
For example, to increase the timeout to one minute, use the following statement: set_aut_var("timeout_for_object_state", 60000); |
|