Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

View File

@ -0,0 +1,23 @@
/**
*
* Get the value of an element's attribute.
*
* @param {String} ID ID of a WebElement JSON object to route the command to
* @param {String} attributeName attribute name of element you want to receive
*
* @return {String|null} The value of the attribute, or null if it is not set on the element.
*
* @see https://w3c.github.io/webdriver/webdriver-spec.html#dfn-get-element-attribute
* @type protocol
*
*/
import { ProtocolError } from '../utils/ErrorHandler'
export default function elementIdAttribute (id, attributeName) {
if ((typeof id !== 'string' && typeof id !== 'number') || typeof attributeName !== 'string') {
throw new ProtocolError('number or type of arguments don\'t agree with elementIdAttribute protocol command')
}
return this.requestHandler.create(`/session/:sessionId/element/${id}/attribute/${attributeName}`)
}