當前位置: 首頁>>代碼示例>>PHP>>正文


PHP BrowserInterface::selectWindow方法代碼示例

本文整理匯總了PHP中Magento\Mtf\Client\BrowserInterface::selectWindow方法的典型用法代碼示例。如果您正苦於以下問題:PHP BrowserInterface::selectWindow方法的具體用法?PHP BrowserInterface::selectWindow怎麽用?PHP BrowserInterface::selectWindow使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Magento\Mtf\Client\BrowserInterface的用法示例。


在下文中一共展示了BrowserInterface::selectWindow方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: processAssert

 /**
  * Assert that created CMS page with 'Status' - Disabled displays with '404 Not Found' message on Frontend.
  *
  * @param CmsPage $cms
  * @param FrontCmsIndex $frontCmsIndex
  * @param CmsPageIndex $cmsIndex
  * @param BrowserInterface $browser
  * @return void
  */
 public function processAssert(CmsPage $cms, FrontCmsIndex $frontCmsIndex, CmsPageIndex $cmsIndex, BrowserInterface $browser)
 {
     $cmsIndex->open();
     $filter = ['title' => $cms->getTitle()];
     $cmsIndex->getCmsPageGridBlock()->searchAndPreview($filter);
     $browser->selectWindow();
     \PHPUnit_Framework_Assert::assertEquals(self::NOT_FOUND_MESSAGE, $frontCmsIndex->getTitleBlock()->getTitle(), 'Wrong page is displayed.');
 }
開發者ID:pradeep-wagento,項目名稱:magento2,代碼行數:17,代碼來源:AssertCmsPageDisabledOnFrontend.php

示例2: processAssert

 /**
  * Assert that content of created cms page displayed in section 'maincontent' and equals passed from fixture.
  *
  * @param CmsPageIndex $cmsIndex
  * @param FrontCmsIndex $frontCmsIndex
  * @param FrontCmsPage $frontCmsPage
  * @param CmsPage $cms
  * @param BrowserInterface $browser
  * @return void
  */
 public function processAssert(CmsPageIndex $cmsIndex, FrontCmsIndex $frontCmsIndex, FrontCmsPage $frontCmsPage, CmsPage $cms, BrowserInterface $browser)
 {
     $cmsIndex->open();
     $filter = ['title' => $cms->getTitle()];
     $cmsIndex->getCmsPageGridBlock()->searchAndPreview($filter);
     $browser->selectWindow();
     $fixtureContent = $cms->getContent();
     \PHPUnit_Framework_Assert::assertContains($fixtureContent['content'], $frontCmsPage->getCmsPageBlock()->getPageContent(), 'Wrong content is displayed.');
     if (isset($fixtureContent['widget'])) {
         foreach ($fixtureContent['widget']['preset'] as $widget) {
             \PHPUnit_Framework_Assert::assertTrue($frontCmsPage->getCmsPageBlock()->isWidgetVisible($widget['widget_type'], $widget['anchor_text']), 'Widget \'' . $widget['widget_type'] . '\' is not displayed.');
         }
     }
     if ($cms->getContentHeading()) {
         \PHPUnit_Framework_Assert::assertEquals($cms->getContentHeading(), $frontCmsIndex->getTitleBlock()->getTitle(), 'Wrong title is displayed.');
     }
 }
開發者ID:shabbirvividads,項目名稱:magento2,代碼行數:27,代碼來源:AssertCmsPagePreview.php

示例3: run

 /**
  * Click on "Print Order" button.
  *
  * @return void
  */
 public function run()
 {
     $this->salesGuestView->getActionsToolbar()->clickLink('Print Order');
     $this->browser->selectWindow();
 }
開發者ID:cewolf2002,項目名稱:magento,代碼行數:10,代碼來源:PrintOrderOnFrontendStep.php

示例4: processAssert

 /**
  * Assert that newsletter preview opened in new window and template content correct
  *
  * @param BrowserInterface $browser
  * @param TemplatePreview $templatePreview
  * @param Template $newsletter
  * @return void
  */
 public function processAssert(BrowserInterface $browser, TemplatePreview $templatePreview, Template $newsletter)
 {
     $browser->selectWindow();
     $content = $templatePreview->getContent()->getPageContent();
     $browser->closeWindow();
     \PHPUnit_Framework_Assert::assertEquals($newsletter->getText(), $content, 'Template content not correct information.');
 }
開發者ID:kidaa30,項目名稱:magento2-platformsh,代碼行數:15,代碼來源:AssertNewsletterPreview.php


注:本文中的Magento\Mtf\Client\BrowserInterface::selectWindow方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。