- What to test
- Selenium and WebdriverIO
- Writing tests
- Running locally
- Configuring GitLab CI/CD
- What’s next
End-to-end testing with GitLab CI/CD and WebdriverIO
Review Apps are great: for every merge request
(or branch, for that matter), the new code can be copied and deployed to a fresh production-like live
environment, reducing the effort to assess the impact of changes. Thus, when we use a dependency manager like
see it
running!
However, looking at the freshly deployed code to check whether it still looks and behaves as
expected is repetitive manual work, which means it is a prime candidate for automation. This is
where automated In this article, we will discuss how
to write such end-to-end tests, and how to set up GitLab CI/CD to automatically run these tests
against your new code, on a branch-by-branch basis. For the scope of this article, we will walk you
through the process of setting up GitLab CI/CD for end-to-end testing JavaScript-based applications
with WebdriverIO, but the general strategy should carry over to other languages.
We assume you are familiar with GitLab, GitLab CI/CD, Review Apps, and running your app locally, e.g., on In the widely-used that allow you to easily identify the source of a problem, should one occur. Rather, you
will likely want to
to just enough to give you the confidence that the deployment went as intended, that your
infrastructure is up and running, and that your units of code work well together.
.
You can write tests using
.
We will be using localhost:8000
.
What to test
Selenium and WebdriverIO
Writing tests
describe('A visitor without account', function(){
it('should be able to navigate to the homepage from the 404 page', function(){
browser.url('/page-that-does-not-exist');
expect(browser.getUrl()).toMatch('page-that-does-not-exist');
browser.element('.content a[href="/"]').click();
expect(browser.getUrl()).not.toMatch('page-that-does-not-exist');
});
});