tiny-vue_version0/examples/sites/demos/pc/app/float-button/jump.spec.ts

9 lines
291 B
TypeScript

import { test, expect } from '@playwright/test'
test('测试按钮跳转', async ({ page }) => {
page.on('pageerror', (exception) => expect(exception).toBeNull())
await page.goto('float-button#jump')
const button = page.locator('.tiny-float-button').first()
await button.click()
})