Codeception / Codeception/module-webdriver

Suggestion: Make `amOnPage()` wait for JavaScript to finish by default

Abierto
#151 1 comentario 0 reacciones 0 asignados Ver en GitHub
Lenguaje dominante
PHP
Estrellas
39
Forks
25
Métricas de merge de PR
Sin PR fusionados en 30 d

Descripción

Starting point: Everybody always wants JavaScript to finish, before performing any action/assertion on the page, right?
At least my usual pattern is:
```php
$I->amOnPage('/');
$I->waitForJS('return document.readyState === "complete";', 5); // https://gist.github.com/pastuhov/43674b195dc293ffd847
```

So I thought about ways to simplify this. My first idea was to introduce a new method, something like `waitForJSToComplete()`.

But now, I think it's even better to include this in `amOnPage()`, by introducing a second parameter:
```php
public function amOnPage($page, bool $waitTillJSIsComplete = true): void
```
This would be a BC break.

Guía de contribución

No hay ninguna guía de contribución indexada para este repositorio

Evaluación

Este issue todavía no se ha evaluado.

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.