Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
PrintOrderFrontendGuestTest.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Mtf\Client\BrowserInterface;
10 use Magento\Mtf\TestCase\Scenario;
11 
31 class PrintOrderFrontendGuestTest extends Scenario
32 {
33  /* tags */
34  const MVP = 'yes';
35  /* end tags */
36 
42  protected $browser;
43 
49  public function __prepare(BrowserInterface $browser)
50  {
51  $this->browser = $browser;
52  }
53 
59  public function test()
60  {
61  $this->executeScenario();
62  }
63 
69  public function tearDown()
70  {
71  $this->browser->closeWindow();
72  }
73 }