38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { test, expect, Page } from '@playwright/test';
|
|
import { strictEqual } from 'assert';
|
|
|
|
let page: Page;
|
|
|
|
test.beforeAll(async ({ browser }) => {
|
|
page = await browser.newPage();
|
|
});
|
|
|
|
test.afterAll(async () => {
|
|
if (page !== undefined) {
|
|
await page.close();
|
|
}
|
|
});
|
|
|
|
test('Login', async () => {
|
|
// Login
|
|
await page.goto('http://192.168.1.62:20101/');
|
|
await expect(page).toHaveTitle(/^Sign in to /);
|
|
await page.fill("input[name='username']", 'admin');
|
|
await page.fill("input[name='password']", '1234');
|
|
await page.click('id=kc-login');
|
|
await page.waitForTimeout(2000);
|
|
// await page.click('id=acceptBtn');
|
|
});
|
|
|
|
test('Status On Natural Person', async () => {
|
|
await page.click('id=menu-icon-customer-management');
|
|
await page.click("//button[@id='btn-dots-PERS000002']");
|
|
await page.click('id=view-detail-btn-undefined-status');
|
|
await page.waitForTimeout(2000);
|
|
});
|
|
|
|
test('Status Off Natural Person', async () => {
|
|
await page.click('id=btn-dots-โคโม่');
|
|
await page.click('id=view-detail-btn-undefined-status');
|
|
await page.waitForTimeout(2000);
|
|
});
|