module AudioPlayer
  class PlayerPage < UniversalPage
    page_url "/"

    audio(:audio, id: "audio-player")

    span(:track_info, class: "TrackInfo-track-number")

    button(:playpause_button, class: "PlaybackControl")
    button(:next_button, class: "NextControl")
    button(:previous_button, class: "PreviousControl")
  end
end
