E2E\SongListActions::createPlaylist PHP Method

createPlaylist() public method

public createPlaylist ( $playlistName )
    public function createPlaylist($playlistName)
    {
        // Try adding a song into a new playlist
        $this->click("{$this->wrapperId} .buttons button.btn-add-to");
        $this->typeIn("{$this->wrapperId} .buttons input[type='text']", $playlistName)->enter();
        return $this;
    }