本文整理匯總了PHP中mage\cms\test\page\CmsIndex::getCmsPageBlock方法的典型用法代碼示例。如果您正苦於以下問題:PHP CmsIndex::getCmsPageBlock方法的具體用法?PHP CmsIndex::getCmsPageBlock怎麽用?PHP CmsIndex::getCmsPageBlock使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mage\cms\test\page\CmsIndex
的用法示例。
在下文中一共展示了CmsIndex::getCmsPageBlock方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: run
/**
* Login customer.
*
* @return void
*/
public function run()
{
$this->cmsIndex->open();
$this->cmsIndex->getTopLinksBlock()->openAccount();
if ($this->cmsIndex->getLinksBlock()->isLinkVisible("Log Out")) {
$this->cmsIndex->getLinksBlock()->openLink("Log Out");
$this->cmsIndex->getCmsPageBlock()->waitUntilTextIsVisible('Home Page');
$this->cmsIndex->getTopLinksBlock()->openAccount();
}
$this->cmsIndex->getLinksBlock()->openLink("Log In");
$this->customerAccountLogin->getLoginBlock()->login($this->customer);
}
示例2: processAssert
/**
* Assert that widget catalog event carousel is present on category page and link "Go To Sale" on widget redirects
* you to category page.
*
* @param CmsIndex $cmsIndex
* @param CatalogEventWidget $widget
* @param CatalogCategoryView $catalogCategoryView
* @param Cache $adminCache
* @param CatalogEvent $event1
* @param CatalogEvent $event2
* @return void
*/
public function processAssert(CmsIndex $cmsIndex, CatalogEventWidget $widget, CatalogCategoryView $catalogCategoryView, Cache $adminCache, CatalogEvent $event1, CatalogEvent $event2)
{
// Flush cache
$adminCache->open();
$adminCache->getPageActions()->flushCacheStorage();
$adminCache->getMessagesBlock()->waitSuccessMessage();
$event1->persist();
$event2->persist();
$cmsIndex->open();
$categoryName = $event2->getCategoryId();
$cmsIndex->getTopmenu()->selectCategory($categoryName);
$errors = $catalogCategoryView->getWidgetView()->checkWidget($widget, $categoryName);
\PHPUnit_Framework_Assert::assertEmpty($errors, implode(" ", $errors));
$cmsIndex->open();
$cmsIndex->getWidgetView()->clickToWidget($widget, $categoryName);
$pageTitle = $cmsIndex->getCmsPageBlock()->getPageTitle();
$expected = strtolower($categoryName);
$actual = strtolower($pageTitle);
\PHPUnit_Framework_Assert::assertEquals($expected, $actual, "Wrong page title on Category page: expected = '{$expected}', actual = '{$actual}'");
}