Description
Use when you need to hold the execution of the next command until an audio play will end.
Parameters
Timeout - Waiting Timeout in milliseconds.
Usage
The audio play will begin and the next step won't be performed until one of following will happen:
- The file playing will end.
- The waiting timeout will end.
Example:
Code Examples
Java Example
client.waitForAudioPlayEnd(10000);
C# Example
client.WaitForAudioPlayEnd(10000);
VBScript Example
client.WaitForAudioPlayEnd 10000 Report
Python Example
self.client.waitForAudioPlayEnd(10000)
Perl Example
$client->waitForAudioPlayEnd(10000);