[Extension API] Register about panel badge (#1436)

* Custom about panel badge

* Add playwright test

* Update README

* nit

* nit

* nit

* nit
This commit is contained in:
Chenlei Hu
2024-11-05 19:06:38 -05:00
committed by GitHub
parent c56533bb23
commit c560628f1f
6 changed files with 112 additions and 31 deletions

View File

@@ -31,4 +31,10 @@ export class SettingDialog {
)
await settingInputDiv.locator('input').click()
}
async goToAboutPanel() {
const aboutButton = this.page.locator('li[aria-label="About"]')
await aboutButton.click()
await this.page.waitForSelector('div.about-container')
}
}