-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
attachFile does not work with PhantomJS #1823
Comments
How to fix it? |
@schmitzc what's the error your getting? I'm running PhantomJs also. Mine is:
|
I meet this error too. I found it a bug in phantomjs 2.0, but my version is |
@friparia I had to switch to Selenium to make file uploads work, no way around it I could see. |
@natenolting thanks, but my test environment doesn't have graphic interface, so i find no way to install firefox or chrome.. |
@friparia you can run Selenium headless, I set Selenium and Firefox up it inside a vagrant box with this script https://gist.github.com/natenolting/ed2bf2abfe444776aad4 |
@natenolting it works! thanks! |
Great! |
It was an issue of PhantomJS and it appears to be fixed in PhantomJS 2.1.0 |
I'm running PhantomJS version 2.1.1 and the issue with codeception still existing. Not able to use attachFile. |
Thank you @Naktibalda . In order to provide more info:
Going back for Selenium, yes it works... but that does fix the issue with PhantomJS. |
I have the same problem as @natenolting and @agarzon, even after updating to 2.1.1. |
ariya/phantomjs#13302 (comment) Could you modify attachFile method and see if it solves the issue? |
@Naktibalda, thanks, that solves my problem :) But will this be changed in Codeception so that one doesn't have to patch this file manually? |
When LocalFileDetector is used, WebDriver uploads file to remote instance of Selenium or PhantomJS, File upload to PhantomJS is broken, so we have to use UselessFileDetector, Codecetion doesn't know if remote instance is PhantomJS so we can't do something like The simplest solution I can image is
Have you got any better ideas? |
Actually, we can do it like:
I think we need to have such detection, probably there will be a need for other phantom-specific patches. |
Thanks @DavertMik for fixing this, but can you release a new tag, i.e. 2.1.6, where this fix is included? |
I haven't had time to test it, but I want to make a note that browser setting has no effect on phantomjs, so the users will have to set it specifically to avoid this file upload issue. When I tested phantomjs, I ran tests with WebDriver module documentation does not tell to set |
I tested what @Naktibalda suggested by changing the browser to firefox and that didn't work |
Yes, that's what I'm aiming for at the moment. I will also need to update docs.
That's not what he suggested. Please get the latest release from 2.1 branch and change your browser to |
Updated docs, and more importantly added PhantomJS to our CI suite! https://semaphoreci.com/codeception/codeception/branches/2-1
Looks almost ready for a new release |
@pivulic This has been release in 2.1.6 |
anyone looking to do this in Laravel Dusk $file_input = $browser->driver->findElement(\Facebook\WebDriver\WebDriverBy::cssSelector('.input-image > input'));
$file_input->setFileDetector(new \Facebook\WebDriver\Remote\LocalFileDetector());
$file_input->sendKeys(__DIR__.'/images/logo.png'); |
I've tracked down the issue to this line in the WebDriver module:
If I remove this line, attachFile works in PhantomJS. Is this something that only works in Selenium?
The text was updated successfully, but these errors were encountered: