我开始设计软件测试并将selenium
与phpunit
一起使用,然后我遇到以下情况
code igniter
class HistorialPeajesFecha extends ConsultasWebController
{
...
public function seleccioneFecha()
{
$this->idVehiculo = $this->input->post('placa');
// I need to generate info with the system session with codeigniter
//how I do the setup the session to do the test
$this->session = $this->session->userdata('myproject');
$idUsuario = $this->session['id_usuario'];
$results = $this->factura->listarHistorialPagos( $idVehiculo, $idUsuario );
$data = array(
'idVehiculo' => $this->idVehiculo,
'attributesForm' => array('id' => 'form_seleccion_fecha'),
'other' => $results
);
$this->load->view( 'consultasWeb/templateHeaderView');
$this->load->view( 'consultasWeb/templateMenuView', $data );
$this->load->view( 'consultasWeb/historialFecha/seleccioneFechaView', $data );
}
...
}
我的问题是,我如何设计测试来检查输出视图(' consultasWeb / historialFecha / seleccioneFechaView')和第一种形式的输入?
网址1表格:localhost / myproject / index.php / consultasWeb / historialFecha /
网址2 FROM :localhost / myproject / index.php / consultasWeb / historialFecha / seleccioneFechaView