You are here

public function TestSubContext::iSwitchToTheFrame in Panopoly 8.2

Same name and namespace in other branches
  1. 7 modules/panopoly/panopoly_test/behat/steps/panopoly_test.behat.inc \TestSubContext::iSwitchToTheFrame()

Switches to frame.

@When I switch to the frame :frame

File

modules/panopoly/panopoly_test/behat/steps/panopoly_test.behat.inc, line 733
Provide Behat step-definitions for generic Panopoly tests.

Class

TestSubContext
Behat sub-context for Panopoly.

Code

public function iSwitchToTheFrame($frame) {
  $this
    ->getSession()
    ->switchToIFrame($frame);
  $this->iframe = $frame;
  sleep(3);
}