elements.js 193 B

12345
  1. import { By } from 'selenium-webdriver'
  2. export async function getActionButtons (webdriver) {
  3. return await webdriver.findElement(By.id('contentActions')).findElements(By.tagName('button'))
  4. }