Skip to content

Commit 4bea791

Browse files
author
Mathieu VANDENNEUCKER
committed
fix: remove typos
1 parent 3839701 commit 4bea791

File tree

43 files changed

+108
-103
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+108
-103
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,6 @@ typings/
6868

6969
#Dev
7070
docs/test.html
71+
72+
#IDE
73+
.idea

docs/markdown/00-school/10-speaker-ape.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- .slide: class="speaker-slide" -->
22

3-
# Présentation
3+
# Presentation
44

55
![speaker](./assets/images/speakers/APE.jpg)
66
![badge first-badge](./assets/images/speakers/adf.svg)

docs/markdown/01-intro/10-installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ npm init playwright@latest
1616

1717
Then follow CLI questions to automatically:
1818
- add correct dependencies
19-
- setup browsers
20-
- setup your system
19+
- set up browsers
20+
- set up your system
2121
- create example tests we can copy
2222
- create basic files
2323
- create configuration file with default settings

docs/markdown/02-getting-started/29-lab-test-suite-run.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
1. Open Playwright UI
1010
2. Run all the tests
11-
3. Run one the test suite
12-
4. Run one the test
11+
3. Run one of the test suites
12+
4. Run one of the tests
1313

1414
<br>
1515

16-
- observe what the UI show up
16+
- observe what's visible on the UI
1717

1818
### npm run 01-run-test-suite
1919

docs/markdown/02-getting-started/41-quiz.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Notes:
2222

2323
## Example 2
2424
## <br/>
25-
## Filling the login form (fields with label "E-mail" and "Password"), click on "Login" button, then redirection on home page with profile name in the heading
25+
## Fill the login form (fields with label "E-mail" and "Password"), click on "Login" button, then get redirected on the home page with your profile name in the heading
2626

2727
Notes:
2828
- ask the student what do they think of this test
@@ -34,7 +34,7 @@ Notes:
3434

3535
## Example 3
3636
## <br/>
37-
## Click on `div > div > button`, wait 15s, check "Here your export link" is visible
37+
## Click on `div > div > button`, wait 15s, check that "Here your export link" is visible
3838

3939
Notes:
4040
- ask the student what do they think of this test
@@ -48,7 +48,7 @@ Notes:
4848

4949
## Example 4
5050
## <br/>
51-
## Click on button "Export", wait the message "Here your export link" is visible, this message should be a link starting with `https://my-export.com/files/`
51+
## Click on button "Export", wait for the message "Here your export link" to be visible, this message should be a link starting with `https://my-export.com/files/`
5252

5353
Notes:
5454
- ask the student what do they think of this test
@@ -62,7 +62,7 @@ Notes:
6262

6363
## Example 5
6464
## <br/>
65-
## Go to book list page, should have 8 `.card` elements in the document
65+
## Go to book list page, it should have 8 `.card` elements in the document
6666

6767
Notes:
6868
- ask the student what do they think of this test

docs/markdown/03-writing-a-simple-test/99-lab-write-first-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1. Ensure Playwright UI is started and demo app is running
1010
2. Create a new test file
1111
3. Create one test that go to home, then check the URL
12-
4. Create a second test that go to /about page, then check the page title include "A propos" in French
13-
5. Create a third test that go to /bakery page, then check the page title include "Bakery" in English
12+
4. Create a second test that go to /about page, then check the page title includes "A propos" in French
13+
5. Create a third test that go to /bakery page, then check the page title includes "Bakery" in English
1414

1515
### npm run 02-writing-first-tests

docs/markdown/04-interact-with-the-page/21-wait-visible-element.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<!-- .slide: class="with-code" -->
88

9-
# Waiting an element appear
9+
# Waiting for an element to appear
1010

1111
```TypeScript
1212
await expect(page.getByRole('heading', { label: 'About' }).toBeVisible();
@@ -21,7 +21,7 @@ Notes:
2121
2222
<!-- .slide: class="with-code" -->
2323
24-
# Waiting an element disappear
24+
# Waiting for an element to disappear
2525
2626
```TypeScript
2727
await expect(page.getByRole('heading', { label: 'About' }).toBeHidden();

docs/markdown/04-interact-with-the-page/22-wait-url.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<!-- .slide: class="with-code" -->
88

9-
# Waiting we are on a specific page
9+
# Waiting for a specific page
1010

1111
```TypeScript
1212
await page.goto('/login');

docs/markdown/04-interact-with-the-page/23-wait-event.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<!-- .slide: class="with-code" -->
88

9-
# Waiting an http request was done
9+
# Waiting for the end of an http request
1010

1111
```TypeScript
1212
const requestPromise = page.waitForRequest('**/*logo*.png');

docs/markdown/04-interact-with-the-page/33-act-on-all.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<!-- .slide: class="with-code" -->
88

9-
# Waiting an http request was done
9+
# Waiting for the end of an http request
1010

1111
```TypeScript
1212
for (const item of await page.getByRole('listitem').all()) {

0 commit comments

Comments
 (0)