Prose\UsingBrowser::switchToIframe PHP Method

switchToIframe() public method

------------------------------------------------------------------
public switchToIframe ( $id )
    public function switchToIframe($id)
    {
        // shorthand
        $browser = $this->device;
        // what are we doing?
        $log = usingLog()->startAction("switch to working inside the iFrame with the id '{$id}'");
        // switch to the iFrame
        $browser->frame(array('id' => $id));
        // all done
        $log->endAction();
    }