* Retrieves the current value of the given attribute of this element. * Will return the current value, even if it has been modified after the page * has been loaded. More exactly, this method will return the value * of the given attribute, unless that attribute is not present, in which case
(attributeName)
| 2850 | * either a string or null. |
| 2851 | */ |
| 2852 | getAttribute(attributeName) { |
| 2853 | return this.execute_(new command.Command(command.Name.GET_ELEMENT_ATTRIBUTE).setParameter('name', attributeName)) |
| 2854 | } |
| 2855 | |
| 2856 | /** |
| 2857 | * Get the value of the given attribute of the element. |
nothing calls this directly
no test coverage detected