Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sainthkh committed Dec 6, 2021
1 parent 271e6fe commit 1f97207
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions content/api/commands/shadow.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,16 @@ can time out waiting for the element(s) to host a shadow
root.</li><li>`.shadow()` can time out waiting for assertions you've added to
pass.</li></List>

## Known Issue

When working with `cy.click()`, it sometimes won't click the right element in Chrome. It's happening because of [the ambiguity in spec](https://bugs.chromium.org/p/chromium/issues/detail?id=1188919&q=shadowRoot%20elementFromPoint&can=2).

In this case, pass `{ position: 'top' }` to `cy.click()` like below:

```js
cy.get('#element').shadow().find('[data-test-id="my-button"]').click({ position: 'top' })
```

## Command Log

**_Traverse into the shadow DOM of an element_**
Expand Down

0 comments on commit 1f97207

Please sign in to comment.