本文整理汇总了PHP中sfTestFunctional::end方法的典型用法代码示例。如果您正苦于以下问题:PHP sfTestFunctional::end方法的具体用法?PHP sfTestFunctional::end怎么用?PHP sfTestFunctional::end使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sfTestFunctional
的用法示例。
在下文中一共展示了sfTestFunctional::end方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: input_tag
<?php
echo input_tag('ctl00$mainPlaceHolder$txtFecha1', '06-05-2010');
include dirname(__FILE__) . '/../../bootstrap/functional.php';
$browser = new sfTestFunctional(new sfBrowser());
$browser->get('http://www.camara.cl/trabajamos/sala_votaciones.aspx');
$browser->with('response')->begin();
$browser->end();
//$browser->checkElement('input ctl00_mainPlaceHolder_txtFecha1', '!/This is a temporary page/');
$browser->with('response')->begin();
//$browser->isStatusCode(200);
$browser->checkElement('body', '!/This is a temporary page/');
$browser->end();
//ctl00_mainPlaceHolder_txtFecha1
/*
$browser->
get('/Sesion/index')->
with('request')->begin()->
isParameter('module', 'Sesion')->
isParameter('action', 'index')->
end()->
with('response')->begin()->
isStatusCode(200)->
checkElement('body', '!/This is a temporary page/')->
end()
;*/