多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Muhammed Mustafa 3f3f9e55f3 fix(test): Temporary fix for pg sakila resetting issue 2 years ago
..
constants fix(test): Moved playwright folder from nc-gui 2 years ago
fixtures fix(test): Moved playwright folder from nc-gui 2 years ago
pages test(playwright): add method to verify selected options 2 years ago
quickTests fix(test): Moved playwright folder from nc-gui 2 years ago
scripts fix(test): Moved playwright folder from nc-gui 2 years ago
setup fix(test): Temporary fix for pg sakila resetting issue 2 years ago
tests fix(test): Temporary fix for pg sakila resetting issue 2 years ago
.env.example fix(test): Moved playwright folder from nc-gui 2 years ago
.eslintrc.json fix(test): Moved playwright folder from nc-gui 2 years ago
.gitignore fix(test): Moved playwright folder from nc-gui 2 years ago
.lintstagedrc.json fix(test): Moved playwright folder from nc-gui 2 years ago
.prettierignore fix(test): Moved playwright folder from nc-gui 2 years ago
.prettierrc.js fix(test): Moved playwright folder from nc-gui 2 years ago
README.md fix(test): Moved playwright folder from nc-gui 2 years ago
package-lock.json fix(test): Moved playwright folder from nc-gui 2 years ago
package.json test(playwrite): add basic tests 2 years ago
playwright.config.ts fix(test): Added clipboard support playwright 2 years ago
startPlayWrightServer.sh fix(test): Moved playwright folder from nc-gui 2 years ago
storageState.json fix(test): Moved playwright folder from nc-gui 2 years ago
tsconfig.json fix(test): Moved playwright folder from nc-gui 2 years ago

README.md

Playwright E2E tests

Setup

Make sure to install the dependencies(in the playwright folder, which is ./tests/playwright):

npm install
npx playwright install chromium --with-deps

Run Test Server

Start the backend test server (in packages/nocodb folder):

npm run watch:run:playwright

Start the frontend test server (in packages/nc-gui folder):

NUXT_PAGE_TRANSITION_DISABLE=true npm run dev

Running Tests

Running all tests

For selecting db type, rename .env.example to .env and set E2E_DEV_DB_TYPE to sqlite(default), mysql or pg.

headless mode(without opening browser):

npm run test

with browser:

npm run test:debug


For setting up mysql:

docker-compose -f ./tests/playwright/scripts/docker-compose-mysql-playwright.yml  up -d

For setting up postgres:

docker-compose -f ./tests/playwright/scripts/docker-compose-playwright-pg.yml 

Running individual tests

Add .only to the test you want to run:

test.only('should login', async ({ page }) => {
  // ...
})
npm run test

Developing tests

WebStorm

In Webstorm, you can use the test-debug run action to run the tests.

Add .only to the test you want to run. This will open the test in a chromium session and you can also add break points.

VSCode

In VSCode, use this extension.

It will have run button beside each test in the file.

Page Objects

  • Page object is a class which has methods to interact with a page/component. Methods should be thin and should not do a whole lot. They should also be reusable.

  • All the action methods i.e click of a page object is also responsible for waiting till the action is completed. This can be done by waiting on an API call or some ui change.

  • Do not add any logic to the tests. Instead, create a page object for the page you are testing. All the selection, UI actions and assertions should be in the page object.

Page objects should be in ./tests/playwright/pages folder.

Verify if tests are not flaky

Add .only to the added tests and run npm run test:repeat. This will run the test multiple times and should show if the test is flaky.