Level 73
Looks like their documentation is wrong. You can try withinFrame instead of withinIframe
https://pestphp.com/docs/browser-testing#content-withiniframe
Why do I get the error?
// pestphp/pest 4.1.0
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Laravel\Dusk\Browser;
use Pest\Browser\Api\PendingAwaitablePage;
test('example', function () {
$page = visit('https://example.com')
->press('Get tickets');
$page->withinIframe('.iframe-container', function (PendingAwaitablePage $page) {
$page->type('frame-input', 'Hello iframe')
->click('frame-button');
});
});
Looks like their documentation is wrong. You can try withinFrame instead of withinIframe
Please or to participate in this conversation.