10 lines
381 B
JavaScript
10 lines
381 B
JavaScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('鼠标进入单元格事件', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('http://localhost:7130/pc/grid-event/event-cell-mouseenter-event')
|
|
await page.getByText('福州').hover()
|
|
|
|
await expect(page.getByText('鼠标进入单元格地址')).toBeVisible()
|
|
})
|