-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Use Phantomjs 2.0 for UI screenshot tests #8143
Comments
I just tried it with our Used PhantomJS from here: https://launchpad.net/~tanguy-patte/+archive/ubuntu/phantomjs Was installed quickly and worked out of the box so far. Not sure about other possible problems. It says it is |
FYI: With PhantomJS 2 we still get the crashes / seg faults |
Related issue on Travis Github repository: travis-ci/travis-ci#3225 Adding PhantomJS 2.0 could be done like this: https://github.com/piwik/piwik/compare/phantomjs_2.0?expand=1 Problems:
Improvements:
|
FYI: PhantomJS 2.0 executed in 31 minutes instead of 37 minutes even though all screenshots fail (it takes more time when screenshots fail usually). It's hard to compare it especially since it also depends on the Travis VM. Problem: It failed at the end when generating the diff file like this: https://travis-ci.org/piwik/piwik/jobs/67782618#L6092 and https://travis-ci.org/piwik/piwik/jobs/67781956#L5203 Here's more output https://travis-ci.org/piwik/piwik/jobs/67929639#L7500 It fails when copying the expected screenshot here: https://github.com/piwik/piwik/blob/2.14.0-b7/tests/lib/screenshot-testing/support/diff-viewer.js#L56 from Not sure how to continue with this issue. Is it worth to investigate this buffer overflow? Do we want to use PhantomJS 2 or not? (see previously mentioned problems/advantages) Related issues: ariya/phantomjs#11703 ariya/phantomjs#11213 @mattab @diosmosis thoughts? |
@diosmosis What do you reckon how much work it would be to remove PhantomJS backend and try using Electron? Not supporting different backends, just Electron? Did you have a look whether Electron provides all API's that we need? Eg inject CSS class, evaluate code, spawn processes (I presume we'd use node.js built-in here), ... Not sure re: electron/electron#228 Background: I just spent 2 or 3 hours trying to make this UI test work until I noticed PhantomJS just doesn't handle the floating correctly and I haven't found a way yet to make it work http://builds-artifacts.piwik.org/ui-tests.7822_3/13859.7/UIIntegrationTest_goals_overview Also with PhantomJS 2 I don't get this test working. This morning I was also 2 or 3 hours busy trying to fix another UI test and I couldn't. I really think it's time to try something else if it isn't too much work. I think we use too many PhantomJS API's |
I just installed electron and executed it and got the following message:
The x11 requirement might be a problem since one doesn't really want to install x11 on a server or on travis (could be also slow to install maybe?) |
I am currently running a serie of CasperJS tests with SlimerJS (Gecko, natively not headless) on a Jenkins box that takes screenshots of my application. This is possible thanks to I hope I helped! |
Thx for that! Do you get SlimerJS to run on Travis? From what I remember it's not headless? |
Hey! All of these are pretty great, but I think Saucelab is the way to go for an OpenSource project, as it's free! |
I already managed to get it working, until right before the actual tests run. That is to say, fixtures can be run successfully, but I didn't convert page-renderer.js.
I believe it has everything needed, except for simulating native events. I found the code in libchromium for it though (hopefully the browser tab still exists), so it can be done through a v8 extension or possibly through node-ffi (though this has to be done on the v8 side of electron, not the node side, so maybe not too easy). Or it could just be avoided, and jquery/javascript can be used (ie, Btw, I don't know why "inject CSS class" would be a feature, it's just a evaluate JS use case. Regarding lack of headless-ness, |
FYI: I quickly tried to use slimerjs but a problem is that global variables do not work there see https://docs.slimerjs.org/current/differences-with-phantomjs.html I will invest a few minutes to try to make it run but probably it'll be a bit more work. |
I can try to help you, I migrated 2 or 3 times in the past month PhantomJS tests to SlimerJS, and the last time was yesterday :p |
I spent 40 minutes on it but everything in our screenshot testing lib is basically based on global variables and we use quite a lot of Also @ngotchac Help is much appreciated. I'll definitely ping you when there are problems. |
@tsteur if there is a chance we can make SlimerJS work in one day, +1 to try it |
After some more thoughts and discussion I think the long term best solution might be electron (from what it seems). It recently added support for webdriver which is pretty awesome see http://electron.atom.io/docs/v0.28.0/tutorial/using-selenium-and-webdriver/ and https://code.google.com/p/selenium/wiki/WebDriverJs We can use all the feature of node.js, it is actually maintained and updated, it is stable and should be fast, bigger community, many tools around electron etc. The only downside is the need of |
Just FYI: Today I spent again 4 hours trying to fix 5 segment selector tests (http://builds-artifacts.piwik.org/ui-tests.7822_3/13908.7/) that started to fail after this commit: 7b6132d I couldn't reproduce this when opening the test URL directly and everything seems fine. I still don't know why this one would fail because of that change. I debugged the JavaScript using As soon as possible I'll have a look re an alternative |
I tried to make it work with Electron today but looks like we definitely need WebDriver, couldn't make it work without. Eg for clicking, reading content of page, manipulating page, ... |
It would be maybe something good to work on in Berlin or Poland with combined power, will see :) |
What makes electron very interesting is https://github.com/segmentio/nightmare which is like CasperJS but for electron. |
We likely update to PhantomJS 2. We're also testing https://github.com/webdriverio/webdrivercss + https://github.com/webdriverio/webdriverio but we need to wait for webdriverio 4 support in webdrivercss (refs webdriverio-boneyard/webdrivercss#123 webdriverio-boneyard/webdrivercss#151 ) |
script to use phantomjs 2.1.1
BTW: In future Puppeteer might be very interesting see https://github.com/GoogleChrome/puppeteer and https://ropig.com/blog/end-end-tests-dont-suck-puppeteer/ It looks like this could work quite nicely and easy to build / migrate etc. |
At some point we should use Phantomjs 2.0 for our screenshot tests. If we are lucky (!) it may help us resolve some issues such as: #7147 #8034. Maybe it would also let us re-enable some of our disabled screenshot tests in #8142
Current blocker: http://phantomjs.org/download.html
If we didn't want to wait for official linux builds we could maybe use these PPA eg. https://launchpad.net/~tanguy-patte/+archive/ubuntu/phantomjs
The text was updated successfully, but these errors were encountered: