UI improvements/sidebar pinning (#175)
Co-authored-by: Aria Minaei <aria.minaei@gmail.com>
This commit is contained in:
parent
ec18687a98
commit
0690a85ae2
46 changed files with 998 additions and 501 deletions
|
@ -12,7 +12,12 @@ test.describe('setting-static-props', () => {
|
|||
test('Undo/redo', async ({page}) => {
|
||||
await page.locator('[data-testid="OutlinePanel-TriggerButton"]').click()
|
||||
|
||||
await page.locator('span:has-text("sample object")').first().click()
|
||||
// https://github.com/microsoft/playwright/issues/12298
|
||||
// The div does in fact intercept pointer events, but it is meant to 🤦
|
||||
await page
|
||||
.locator('span:has-text("sample object")')
|
||||
.first()
|
||||
.click({force: true})
|
||||
|
||||
const detailPanel = page.locator('[data-testid="DetailPanel-Object"]')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue