mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-22 15:42:20 +03:00
Fix HTML attribute
While reading through the documentation, I found two typing mistake in the HTML attributes.
This commit is contained in:
parent
5fccfe706d
commit
12059a1794
@ -54,7 +54,7 @@ Our HTML form is:
|
||||
</form>
|
||||
```
|
||||
|
||||
The first input, name, has validation HTML attributes: `minlenght="4"`, `maxlenght="32"` and `required`.
|
||||
The first input, name, has validation HTML attributes: `minlength="4"`, `maxlength="32"` and `required`.
|
||||
In a browser, these attributes will prevent the user from entering invalid data like a missing value or a name that is too long. If your
|
||||
tests rely on a "headless" browser, it can stop you from testing your server-side
|
||||
validation. Client-side validation can also use JavaScript, and it can be a challenge to send invalid data to your server.
|
||||
@ -308,7 +308,7 @@ question4: 0fec576c
|
||||
HTTP 403
|
||||
```
|
||||
|
||||
We have seen that Hurl can be used as a security tool, to check you server-side validation.
|
||||
We have seen that Hurl can be used as a security tool, to check your server-side validation.
|
||||
Until now, we have done all our tests locally, and in the next session we are going to see how simple
|
||||
it is to integrate Hurl in a CI/CD pipeline like [GitHub Action] or [GitLab CI/CD].
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user