Simplified editor plugin configuration management (#9485)

Signed-off-by: Victor Ilyushchenko <alt13ri@gmail.com>
This commit is contained in:
Victor Ilyushchenko
2025-07-08 17:30:27 +07:00
committed by GitHub
parent 7b921eeeac
commit 99feb2e894
84 changed files with 1321 additions and 1330 deletions
@@ -261,7 +261,7 @@ export class DocumentContentPage extends CommonPage {
}
async changeCodeBlockLanguage (text: string, oldLang: string, lang: string): Promise<void> {
await this.codeBlock(text).locator('button.antiButton', { hasText: oldLang }).nth(1).click()
await this.codeBlock(text).locator('button.antiButton', { hasText: oldLang }).click()
await this.selectMenuItem(this.page, lang, true)
}