mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-13 01:25:45 +00:00
6 lines
193 B
JavaScript
6 lines
193 B
JavaScript
import { By } from 'selenium-webdriver'
|
|
|
|
export async function getActionButtons (webdriver) {
|
|
return await webdriver.findElement(By.id('contentActions')).findElements(By.tagName('button'))
|
|
}
|