-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Behat\Mink\Tests\Driver\Js\ChangeEventTest::testSetValueChangeEvent error #9
Comments
I can add more info. |
@jcalderonzumba well, you could handle it by moving some logic at the driver level for |
That's a good point. i'll add that in the todo. However the test itself is actually setting a string the file value, don't think that is accurate at least not for "real browsers" |
@jcalderonzumba the value passed to We never said that this getter was equivalent to setting the |
I understand that and that's why in my case is done on JS stuff (i need to change that to handle files properly). public function setValueChangeEventDataProvider()
{
return array(
'input default' => array('the-input-default', 'from empty', 'from existing'),
'input text' => array('the-input-text', 'from empty', 'from existing'),
'input email' => array('the-email', 'from empty', 'from existing'),
'textarea' => array('the-textarea', 'from empty', 'from existing'),
'file' => array('the-file', 'from empty', 'from existing'),
'select' => array('the-select', '30'),
'radio' => array('the-radio-m', 'm'),
);
} on the file => array(...) |
I think this can be closed regarding merged PR #26. |
I'm testing https://github.com/jcalderonzumba/MinkPhantomJSDriver with the test suite using phantomjs 2.1.1 and i get this error that does not happen on older phantomjs browsers.
The text was updated successfully, but these errors were encountered: