|
3 | 3 | declare(strict_types=1); |
4 | 4 |
|
5 | 5 | /* |
6 | | - * This file is part of the Playwright PHP community project. |
7 | | - * For the full copyright and license information, please view |
8 | | - * the LICENSE file that was distributed with this source code. |
| 6 | + * This file is part of the community-maintained Playwright PHP project. |
| 7 | + * It is not affiliated with or endorsed by Microsoft. |
| 8 | + * |
| 9 | + * (c) 2025-Present - Playwright PHP <https://github.com/playwright-php> |
| 10 | + * |
| 11 | + * For the full copyright and license information, please view the LICENSE |
| 12 | + * file that was distributed with this source code. |
9 | 13 | */ |
10 | 14 |
|
11 | | -namespace PlaywrightPHP\Mink\Driver; |
| 15 | +namespace Playwright\Mink\Driver; |
12 | 16 |
|
13 | 17 | use Behat\Mink\Driver\CoreDriver; |
14 | 18 | use Behat\Mink\Exception\DriverException; |
15 | 19 | use Behat\Mink\KeyModifier; |
16 | | -use PlaywrightPHP\Browser\BrowserContextInterface; |
17 | | -use PlaywrightPHP\Browser\BrowserInterface; |
18 | | -use PlaywrightPHP\Frame\FrameLocatorInterface; |
19 | | -use PlaywrightPHP\Locator\LocatorInterface; |
20 | | -use PlaywrightPHP\Network\ResponseInterface; |
21 | | -use PlaywrightPHP\Network\Route; |
22 | | -use PlaywrightPHP\Page\PageInterface; |
23 | | -use PlaywrightPHP\PlaywrightClient; |
24 | | -use PlaywrightPHP\PlaywrightFactory; |
| 20 | +use Playwright\Browser\BrowserContextInterface; |
| 21 | +use Playwright\Browser\BrowserInterface; |
| 22 | +use Playwright\Frame\FrameLocatorInterface; |
| 23 | +use Playwright\Locator\LocatorInterface; |
| 24 | +use Playwright\Network\ResponseInterface; |
| 25 | +use Playwright\Network\Route; |
| 26 | +use Playwright\Page\PageInterface; |
| 27 | +use Playwright\PlaywrightClient; |
| 28 | +use Playwright\PlaywrightFactory; |
25 | 29 |
|
26 | 30 | /** |
27 | | - * Playwright powered driver for Behat/Mink. |
| 31 | + * Playwright-powered driver for Behat/Mink. |
28 | 32 | * |
29 | 33 | * @author Simon André |
30 | 34 | */ |
|
0 commit comments