Skip to content

Commit ffac3d6

Browse files
author
Andrew Knight
committed
Merge branch 'chapter/08-learning-more'
2 parents 825ab79 + 95c5b8e commit ffac3d6

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,8 @@ dist
128128
.yarn/build-state.yml
129129
.yarn/install-state.gz
130130
.pnp.*
131+
132+
# Playwright
131133
/test-results/
132134
/playwright-report/
133135
/playwright/.cache/

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,20 @@ npm init playwright@latest
2929

3030
Choose the default options for each prompt.
3131
Choose YES to install the Playwright browsers.
32-
This tutorial was created with Playwright 1.36.1.
32+
This tutorial was created with Playwright 1.36.1,
33+
but later versions of Playwright should be okay to use.
34+
35+
This tutorial also uses a local web app for testing.
36+
This web app is located in a [separate project](https://github.com/filiphric/trelloapp-vue-vite-ts).
37+
Put this project in a separate directory from `awesome-playwright-tests`.
38+
Clone it from GitHub and install its dependencies using the following commands.
39+
40+
```
41+
cd ..
42+
git clone https://github.com/filiphric/trelloapp-vue-vite-ts.git
43+
cd trelloapp-vue-vite-ts
44+
npm install
45+
```
3346

3447
*Warning:*
3548
**Complete these steps *before* taking this tutorial as part of a live session** (like at a conference or a webinar).

0 commit comments

Comments
 (0)