E2E\PlaylistScreenTest::testPlaylistScreen PHP Method

testPlaylistScreen() public method

public testPlaylistScreen ( )
    public function testPlaylistScreen()
    {
        $this->loginAndGoTo('songs')->selectRange()->createPlaylist('Bar')->seeText('Bar', '#playlists > ul');
        $this->click('#sidebar .playlist:nth-last-child(1)');
        $this->see('#playlistWrapper');
        $this->click('#playlistWrapper .btn-delete-playlist');
        // expect a confirmation
        $this->see('.sweet-alert');
    }
PlaylistScreenTest