(err)
| 235 | return HTTPStatusCodes.BAD_REQUEST; |
| 236 | } |
| 237 | constructor (err) { |
| 238 | super(err || 'The Element Click command could not be completed because the element receiving ' + |
| 239 | 'the events is obscuring the element that was requested clicked', |
| 240 | ElementClickInterceptedError.code(), ElementClickInterceptedError.w3cStatus(), |
| 241 | ElementClickInterceptedError.error()); |
| 242 | } |
| 243 | } |
| 244 | |
| 245 | class ElementNotInteractableError extends ProtocolError { |