summaryrefslogtreecommitdiff
path: root/doc/ci/examples/end_to_end_testing_webdriverio/index.md
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-02-13 06:09:07 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-13 06:09:07 +0000
commit31a49d924418aa9983ae30be28e6e304a30939e1 (patch)
treec346584e3bf6a40938bb0531e1cbe436e0b8b32d /doc/ci/examples/end_to_end_testing_webdriverio/index.md
parent56a7627af0b4cc9fa9869bff88c8a3c81ca931c6 (diff)
downloadgitlab-ce-31a49d924418aa9983ae30be28e6e304a30939e1.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/ci/examples/end_to_end_testing_webdriverio/index.md')
-rw-r--r--doc/ci/examples/end_to_end_testing_webdriverio/index.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ci/examples/end_to_end_testing_webdriverio/index.md b/doc/ci/examples/end_to_end_testing_webdriverio/index.md
index 2b78dd60b8a..3402190c805 100644
--- a/doc/ci/examples/end_to_end_testing_webdriverio/index.md
+++ b/doc/ci/examples/end_to_end_testing_webdriverio/index.md
@@ -44,12 +44,12 @@ infrastructure is up and running, and that your units of code work well together
## Selenium and WebdriverIO
-[Selenium](http://www.seleniumhq.org/) is a piece of software that can control web browsers, e.g., to make them
+[Selenium](https://selenium.dev/) is a piece of software that can control web browsers, e.g., to make them
visit a specific URL or interact with elements on the page. It can be programmatically controlled
from a variety of programming languages. In this article we're going to be using the
[WebdriverIO](https://webdriver.io/) JavaScript bindings, but the general concept should carry over
pretty well to
-[other programming languages supported by Selenium](http://docs.seleniumhq.org/about/platforms.jsp#programming-languages).
+[other programming languages supported by Selenium](https://selenium.dev/about/platforms.jsp#programming-languages).
## Writing tests