cicd: fix broken test, hopefully

This commit is contained in:
jamesread
2024-02-23 17:19:36 +00:00
parent 865bef532a
commit b8f23ce80c
2 changed files with 14 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
import { By } from 'selenium-webdriver'
export async function getActionButtons (webdriver) {
return await webdriver.findElement(By.id('contentActions')).findElements(By.tagName('button'))
}