Page tree
Skip to end of metadata
Go to start of metadata

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:

  1. The file playing will end.
  2. 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);


  • No labels