Я начал разрабатывать тестирование и использование программного обеспечения 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 / historyialFecha / seleccioneFechaView’) с вводом с первой формы ?.
ФОРМА URL 1 : localhost / myproject / index.php / consultasWeb / historyialFecha /
URL 2 ОТ : localhost / myproject / index.php / consultasWeb / historyialFecha / seleccioneFechaView
Для phpunit в коде вы можете скачать композитор и установить
http://kenjis.github.io/ci-phpunit-test/
Других решений пока нет …