本文整理汇总了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}'");
}