Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context
The apm-rum-vue e2e tests were failing because of the following combination:
Mozilla recently removed the ability to pass the capability --remote-debugging-port in Firefox GeckoDriver version 0.31.0.
and
On October 4, 2022, Sauce Labs updated the supported Firefox GeckoDriver to version 0.31.0 for tests on Firefox versions 90 and later. If you use the –remote-debugging-port capability, your tests will fail if you do not take action before October 4, 2022.
More info here
Fix
The cleanest fix for this would be to update to a new version of karma-sauce-launcher. Unfortunately, a new version available with the updated webdriverio dependency is not yet available.
The solution proposed by saucelabs is to set the geckodriverVersion config option to 0.30.0. This is the solution that we have applied.
Once the new version of karma-sauce-launcher is available we will update it and remove the 0.30.0 config option.