Gets the value for the given attribute from the element.
(name: string)
| 146 | |
| 147 | /** Gets the value for the given attribute from the element. */ |
| 148 | getAttribute(name: string): Promise<string | null>; |
| 149 | |
| 150 | /** Checks whether the element has the given class. */ |
| 151 | hasClass(name: string): Promise<boolean>; |
no outgoing calls