Skip to main content Link Menu Expand (external link) Document Search Copy Copied

video.test.hasPlayed

description

Tests whether the video stream has played at least once before in the trial.

syntax

getVideo(ELEMENT_NAME).test.hasPlayed()

example(s)


@newVideo("myVideo", "file.mp4")
@  .print()
@,
@newButton("Next")
@  .print()
@  .wait(
$    getVideo("myVideo").test.hasPlayed()
$    .failure( newText("Please play the video first").print() )
@  )
  • After the button Next is pressed and the printed video isn’t played yet, the program will throw error saying that the video should be played first.