Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-05 12:12:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-05 12:12:42 +0300
commit2a134be97dafb4743eee8fc908463136ddf23b1f (patch)
tree43ce3854f0a69a5938db1a56abc20cdce3517a52 /doc/development/testing_guide
parent7c0c3a7dc95668d20ec8f4bbc2d505f373b6032a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/testing_guide')
-rw-r--r--doc/development/testing_guide/frontend_testing.md9
1 files changed, 3 insertions, 6 deletions
diff --git a/doc/development/testing_guide/frontend_testing.md b/doc/development/testing_guide/frontend_testing.md
index c815851579a..d596c21bd5c 100644
--- a/doc/development/testing_guide/frontend_testing.md
+++ b/doc/development/testing_guide/frontend_testing.md
@@ -903,7 +903,7 @@ The `scripts/frontend/download_fixtures.sh` script is meant to download and extr
```shell
# Checks if a frontend fixture package exists in the gitlab-org/gitlab
# package registry by looking at the commits on a local branch.
-#
+#
# The package is downloaded and extracted if it exists
$ scripts/frontend/download_fixtures.sh
@@ -1753,11 +1753,8 @@ Inside the terminal, where capybara is running, you can also execute `next` whic
### Updating ChromeDriver
-On MacOS, if you get a ChromeDriver error, make sure to update it by running
-
-```shell
- brew upgrade chromedriver
-```
+Starting from `Selenium` 4.6, ChromeDriver can be automatically managed by `Selenium Manager` which comes with the `selenium-webdriver` gem.
+You are no longer required to manually keeping chromedriver in sync.
---