Skip to content

gf.getAttribute

gf.getAttribute(selector: string, name: string): Promise<string | undefined>

Section titled “gf.getAttribute(selector: string, name: string): Promise<string | undefined>”

Retrieves the value of the specified attribute of the specified element.

  • selector: The CSS selector of the element to retrieve.
  • name: The name of the attribute to retrieve.
  • Returns a promise that resolves to the value of the attribute or undefined if the attribute does not exist.
describe('Test script', function () {
it('Test 1', async () => {
const attribute = await gf.getAttribute('.my-element', 'data-id');
});
});