* Get the given property of the referenced web element * @param {string} propertyName The name of the attribute to query. * @return {!Promise } A promise that will be * resolved with the element's property value
(propertyName)
| 2885 | * resolved with the element's property value |
| 2886 | */ |
| 2887 | getProperty(propertyName) { |
| 2888 | return this.execute_(new command.Command(command.Name.GET_ELEMENT_PROPERTY).setParameter('name', propertyName)) |
| 2889 | } |
| 2890 | |
| 2891 | /** |
| 2892 | * Get the shadow root of the current web element. |