PHPUnit Selenium integration for Laravel 5.2+

Prior to the release of Laravel 5.2, the integrated Laracasts package provided Selenium integration for Laravel. I could not find a similar package for release 5.2. Whether there is a? How to integrate selenium testing with Laravel?

I saw these links, they do not provide any solutions:
Selenium and Laravel 5.2
Has anyone tried the Laravel Integrated package in Laravel 5.2?

+4
source share
1 answer

PHPUnit has a selenium extension . It is not completely lazy and is not supported by the modern WebDriver interface.

CodeCeption - , PHP. API- , selenium .

Laravel chrome . :

<?php
$I->amOnPage('/login');
$I->fillField('username', 'davert');
$I->fillField('password', 'qwerty');
$I->click('LOGIN');
$I->see('Welcome to codeception!');

CodeCeption:
http://codeception.com/11-20-2013/webdriver-tests-with-codeception.html

:
https://github.com/lmc-eu/steward
https://github.com/Modelizer/Selenium
https://github.com/jhoopes/laravel-selenium-driver

: .
. . Mink PHPUnit.

+3

Source: https://habr.com/ru/post/1660593/


All Articles