lib-innerbrowser icon indicating copy to clipboard operation
lib-innerbrowser copied to clipboard

InnerBrowser

Results 19 lib-innerbrowser issues
Sort by recently updated
recently updated
newest added

If you manually follow a redirect the crawler contains the response for the request *before*. I've targeted this at the 3.x branch is that's what my project is using, it...

Hello, Since 2.x, method seeResponseCodeIs is no longer generating a object ComparisonFailure within the exception when the assertion failed. This change come from the usage of assertSame instead of assertEquals....

Allow all options to be deselected by passing through an empty array

Here is my case. A simple web page with a menu and a form: Save the dolphins ... And here is my test case $I->amOnPage('/profile'); $I->fillField('email', '[email protected]'); $I->click('Save'); $I->seeAlertMessage('success', 'Email...

See https://github.com/Codeception/Codeception/pull/6156#issuecomment-813291606 "Option" is an ambiguous term - e.g. `selectOption` refers to `` and radio: https://codeception.com/docs/modules/Symfony#selectOption TODO: Rename it here too: https://codeception.com/docs/modules/Symfony#submitForm

Adding a hint to Symfony's exception message, see https://github.com/Codeception/Codeception/issues/5979

Having issues with PHPBrowser overwriting test output from WebDriver, a configurable prefix here aims to help prevent that, not sure if there's a better way though.

#### What are you trying to achieve? I am trying to call `sendAjaxPostRequest` and I would like to pass raw, unformatted parameters to the server. For example ```php $I->sendAjaxPostRequest('/some-endpoint', '{"foo":...

1. Redirection by refresh meta tag is supported by Guzzle connectors, but not by framework connectors. [createResponse method](https://github.com/Codeception/Codeception/blob/1b29175e476ff99b0efd21e8a917e42616c0cd93/src/Codeception/Lib/Connector/Guzzle6.php#L93) should be promoted from Guzzle connectors to InnerBrowser. 2. createResponse does not...

Is there a way to just resend the very same request again in a functional test? My scenario: I'm submitting a POST-form, and I want to see what happens if...