Mink icon indicating copy to clipboard operation
Mink copied to clipboard

PHP web browser emulator abstraction

Results 87 Mink issues
Sort by recently updated
recently updated
newest added

Release `1.11.0` introduced strict types. With that, the `switchToIFrame(string? $id)` method started to fail on consumer projects using `w3c` = `true` because the expected `$id` argument has a type `string`...

Previously in Drupal we used `responseHeaderEquals()` to check for the non-existence of a header by looking for NULL: ``` $this->assertSession()->responseHeaderEquals('Access-Control-Allow-Origin', NULL); ``` Since Mink 1.11 this no longer works as...

add static data generators fix deprecated file-structure for abstract test classes

The changes are fully backword compatible.

The 2 abstract Test-Classes are excludet to nor raise Warnings and break CI-runs.

It will be a blocker for Drupal 11 Links - https://wiki.php.net/rfc/deprecate-implicitly-nullable-types - https://php.watch/versions/8.4/implicitly-marking-parameter-type-nullable-deprecated

### Technical limitations * Selenium 2 can switch windows either by `name` or by `handle` (see https://www.selenium.dev/documentation/legacy/json_wire_protocol/#sessionsessionidwindow) * Selenium 3 can switch windows by `handle` only (see https://www.w3.org/TR/webdriver2/#switch-to-window) ### Switching...