https://playwright.dev/docs/extensibility
Extensibility (khả năng mở rộng)
- Playwright cho phép bạn custom lại selector engine.
- Custom selector cần có 2 property sau:
-
Custom selector cần có 2 property sau:
- query: query element đầu tiên matching với selector
- queryAll: query tất cả các element matching với selector
-
Mặc định thì engine chạy ngay trong Javascript context của frame
- Có thể gọi application-defined function (tức là hàm mình tự code thêm).
- Để isolate engine với Javascription của frame (mà vẫn access vào DOM được), sử dụng
{contentScript: true}
- Content script engine sẽ an toàn hơn, vì nó được isolate, không set được global variable.
- Built-in selector cũng được chạy như một content script.
-
Lưu ý: selector cần được regist trước khi tạo page.
-
Ví dụ dưới đây custom thêm 1 cái selector là
tag=
để select
import { test as base } from '@playwright/test';
export { expect } from '@playwright/test';
// Must be a function that evaluates to a selector engine instance.
const createTagNameEngine = () => ({
// Returns the first element matching given selector in the root's subtree.
query(root, selector) {
return root.querySelector(selector);
},
// Returns all elements matching given selector in the root's subtree.
queryAll(root, selector) {
return Array.from(root.querySelectorAll(selector));
}
});
export const test = base.extend<{}, { selectorRegistration: void }>({
// Register selectors once per worker.
selectorRegistration: [async ({ playwright }, use) => {
// Register the engine. Selectors will be prefixed with "tag=".
await playwright.selectors.register('tag', createTagNameEngine);
await use();
}, { scope: 'worker', auto: true }],
});
- Trong file test
import { test, expect } from './baseTest';
test('selector engine test', async ({ page }) => {
// Now we can use 'tag=' selectors.
const button = page.locator('tag=button');
await button.click();
// We can combine it with built-in locators.
await page.locator('tag=div').getByText('Click me').click();
// We can use it in any methods supporting selectors.
await expect(page.locator('tag=button')).toHaveCount(3);
});
Trả lời