Skip to main content

SeeTest Client - WaitForAudioPlayEnd

info

Please note that this tool is classified as a Legacy tool. We recommend transitioning to our updated solutions to maintain optimal performance and security in your workflows. For more information on this matter, please reach out to technical support .

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);