You are here

public function FeatureContext::iLeaveTheIframe in Bear 7

@Given /^I leave the iframe$/

File

tests/features/bootstrap/FeatureContext.php, line 135

Class

FeatureContext
Defines application features from the specific context.

Code

public function iLeaveTheIframe() {
  $this
    ->getSession()
    ->switchToIFrame();
  $this
    ->getSession()
    ->wait(3000, 'false');
}