You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use waitForElementChange action in a test <waitForElementChange selector="#selector" function="function(\WebDriverElement $el) {return $el->isDisplayed();}" stepKey="waitForElementChange"/>.
Generate tests vendor/bin/robo generate:tests.
Check generated Cest file.
Expected result
waitForElementChange method is generated without double quotes around closure function $I->waitForElementChange("#selector", function(\WebDriverElement $el) {return $el->isDisplayed();});.
Actual result
waitForElementChange method is generated with double quotes around closure function $I->waitForElementChange("#selector", "function(\WebDriverElement $el) {return $el->isDisplayed();}");.