Skip to content

Commit 9494bb6

Browse files
committed
Add mabl demo
1 parent 717aacc commit 9494bb6

File tree

15 files changed

+13483
-0
lines changed

15 files changed

+13483
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,3 +128,9 @@ dist
128128
.yarn/build-state.yml
129129
.yarn/install-state.gz
130130
.pnp.*
131+
132+
# Playwright
133+
/test-results/
134+
/playwright-report/
135+
/blob-report/
136+
/playwright/.cache/

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,31 @@
11
# mabl-playwright-integrations
22
This repository provides examples, tools, and utilities for integrating Mabl and Playwright.
3+
4+
# Installation
5+
6+
## On your mabl workspace
7+
8+
### Create and API key
9+
10+
TODO
11+
12+
### Create a Database configuration
13+
14+
TODO
15+
16+
Note: This demo project assumes that the database has a `pets` table.
17+
18+
### Create credentials
19+
20+
TODO
21+
22+
## Create .env file
23+
24+
The best way to use this demo project is to create a `.env` file in the root of the project with the following content:
25+
26+
```
27+
MABL_API_KEY=your_api_key
28+
MABL_WORKSPACE_ID=your_workspace_id
29+
DATABASE_ID=your_database_id
30+
MABL_CREDENTIALS_ID=your_credentials_id
31+
```

0 commit comments

Comments
 (0)