E2E\TestCase::goto PHP Method

goto() protected method

Go to a specific screen.
protected goto ( $screen )
$screen
    protected function goto($screen)
    {
        $this->wrapperId = "#{$screen}Wrapper";
        if ($screen === 'favorites') {
            $this->click('#sidebar .favorites a');
        } else {
            $this->click("#sidebar a.{$screen}");
        }
        $this->see($this->wrapperId);
        return $this;
    }