E2E\SongListActions::selectAllSongs PHP Method

selectAllSongs() public method

public selectAllSongs ( )
    public function selectAllSongs()
    {
        $this->click($this->wrapperId);
        // make sure focus is there before executing shortcut keys
        (new WebDriverActions($this->driver))->keyDown(null, WebDriverKeys::COMMAND)->keyDown(null, 'A')->keyUp(null, 'A')->keyUp(null, WebDriverKeys::COMMAND)->perform();
        return $this;
    }