Skip to main content

SeeTest Client - StartAudioPlay

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

Start playing an audio file to the device.

The file will be played until it ends and the test will continue meanwhile. if you wish performing the next command only after the audio play will end, use SeeTest Client - WaitForAudioPlayEnd.

Parameters

Full path to file.

Usage

This command will start playing to the device from an audio file.

Supported file format is *.wav files only!

Example:   

Code Examples

Java Example

client.startAudioPlay("C:\\AudioFilesToPlay\\OpenWaze.wav");

C# Example

client.StartAudioPlay("C:\\AudioFilesToPlay\\OpenWaze.wav");

VBScript Example

client.StartAudioPlay "C:\\AudioFilesToPlay\\OpenWaze.wav"
Report

Python Example

self.client.startAudioPlay("C:\\AudioFilesToPlay\\OpenWaze.wav")

Perl Example

$client->startAudioPlay("C:\\AudioFilesToPlay\\OpenWaze.wav");