Replies: 15 comments 7 replies
-
Hi @joonne, This is a very common and irritating error, one which I struggled with for quite a few days over the initial development of I left the flag combinations which worked for me (across Linux, MacOS & Windows) on github actions in the service so you shouldn't need to pass them in appArgs: https://github.com/webdriverio-community/wdio-electron-service/blob/main/src/service.ts#L121 Could be that the isCI check is failing, if you check the wdio logs (need to be set to a minimum level of You might also want to put some additional debug into your local copy of the service. Even if the flags currently specified are being applied correctly in all cases, I don't expect that they will fix all instances of this error; if you manage to find a chromium flag or another change to the service that fixes your instance we can see about getting that (and potentially any additional useful debug logging) merged in. |
Beta Was this translation helpful? Give feedback.
-
Hey, thanks for the reply! I'm currently trying to debug if the flags from |
Beta Was this translation helpful? Give feedback.
-
No problem, good luck. I knew it wouldn't be long before someone would be experiencing this issue with the service. |
Beta Was this translation helpful? Give feedback.
-
I think it would be nice if we document solutions to this problem, maybe in the |
Beta Was this translation helpful? Give feedback.
-
@christian-bromann yes, I'll use this issue as a tracker for that as any documentation may also be affected by the OP's findings. EDIT: created a new issue for docs update, better to keep things separate. |
Beta Was this translation helpful? Give feedback.
-
I found out the issue for our problem, it was in fact a missing dependency in our docker image. This was revealed by trying to run chromium (or our own electron app) inside the container. The missing library in our case was libgbm1, and after this was installed, the DevToolsActivePort issue was gone. Not sure if it is relevant to be documented in this package's documentation, but it seems there are multiple ways to end up in this particular error 🤷♂️ Maybe some notion about running in docker would be in place also? |
Beta Was this translation helpful? Give feedback.
-
@joonne glad you fixed it, presumably the library was needed for xvfb to work properly. This particular error is a difficult one but if enough people have the same error and report them here as issues we can keep updating the docs for common solutions. |
Beta Was this translation helpful? Give feedback.
-
I'm having the same issue at the moment. I'm curious what base image you used, @joonne and what other libraries you installed to get this working. I'm trying to get my tests to run on Gitlab Ci. isCi is returning true, so that isn't the problem. This is my image: FROM node:16
RUN apt-get update
# git is required for e2e tests
RUN apt-get install -y git
# install libnss3
RUN apt-get install -y libnss3
# install libgbm1
RUN apt-get install -y libgbm1
# install xvfb
RUN apt-get install -y xvfb I tried installing xvfb as a last ditch move to get the library working on CI. Have you come up with any other debugging steps for this @goosewobbler ? |
Beta Was this translation helpful? Give feedback.
-
@elboboua No, I came across it again recently whilst working on #54 though. It was fixed by using this github action, only thing I can suggest is that it you could try duplicating what it does, I think it's more involved than simply installing xvfb. https://github.com/marketplace/actions/gabrielbb-xvfb-action |
Beta Was this translation helpful? Give feedback.
-
Good news! I was able to resolve this issue on a Gitlab CI runner, and I think I have some information that might be helpful for others with this problem. There are a list of necessary libraries to run xvfb that I found here. I created my image ensuring that I installed the necessary libraries there. Here is my dockerfile: FROM node:16
RUN apt-get update
# git is required for e2e tests
RUN apt-get install -y git
# install libnss3
RUN apt-get install -y libnss3
# install xvfb
RUN apt-get install -y xvfb
# possible dependencies
RUN apt-get install -y zip
RUN apt-get install -y wget
RUN apt-get install -y ca-certificates
RUN apt-get install -y libnss3-dev libasound2 libxss1 libappindicator3-1 libindicator7 gconf-service libgconf-2-4 libpango1.0-0 xdg-utils fonts-liberation libgbm1 Next, before running End-to-End Test:
stage: e2e test
dependencies:
- Make Package
<<: *install-modules-and-generate-files
script:
- echo "Setting up xvfb"
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- npm run wdio Worked like a charm! Hopefully this is helpful, but if you need more explanation, let me know! |
Beta Was this translation helpful? Give feedback.
-
Just to update this thread, the service no longer passes any args by default, so anyone wanting to use e.g. The reason for this change is that, given our current CI setup for building and running E2Es, the DevToolsActivePort error was not triggered by removing the args completely - so I removed them in order for users to have complete control over the args passed through. Additionally, I have added a brief paragraph to the readme about this issue with a link to this discussion. |
Beta Was this translation helpful? Give feedback.
-
Just add --remote-debugging-port command line option to appArgs to make it work. "--disable-infobars" These flags are not needed. |
Beta Was this translation helpful? Give feedback.
-
What's the best way to debug this generic error? Is there a way to get more debug logs or view a stack trace? |
Beta Was this translation helpful? Give feedback.
-
Running into this again after restructuring the repo for a full monorepo approach using Turborepo. So far I've tried:
Nothing seems to work. If I don't get anywhere soon I might try NX / Lerna again as that was working on CI. |
Beta Was this translation helpful? Give feedback.
-
I encountered this again whilst working on Zutron. The error was still ocurring consistently on linux CI despite xvfb being active. The issue turned out to be sandbox-related, as passing It might make sense for the service to pass |
Beta Was this translation helpful? Give feedback.
-
Hey, trying to run cucumber tests against electron inside docker in Jenkins and we're seeing this kinda error:
Internet suggests that I should be passing
--disable-dev-shm-usage
flag for the chromium, but haven't been able to do that.Any helpers or advice that I might have overlooked?
I'm doing a migration from spectron to wdio at the moment.
The docker entrypoint making use of xvfb was configured already for spectron and I guess it should work similarly for the wdio also?
wdio.conf.ts
Grateful for any tips :)
Beta Was this translation helpful? Give feedback.
All reactions