mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-28 01:15:10 +03:00
docs: fix broken anchor links (#31707)
This commit is contained in:
parent
7ce9b7e56b
commit
f66f5b800e
@ -881,7 +881,7 @@ await page.Locator("data-test-id=submit").ClickAsync();
|
||||
```
|
||||
|
||||
:::note
|
||||
Attribute selectors are not CSS selectors, so anything CSS-specific like `:enabled` is not supported. For more features, use a proper [css] selector, e.g. `css=[data-test="login"]:enabled`.
|
||||
Attribute selectors are not CSS selectors, so anything CSS-specific like `:enabled` is not supported. For more features, use a proper [css](#css-locator) selector, e.g. `css=[data-test="login"]:enabled`.
|
||||
:::
|
||||
|
||||
## Chaining selectors
|
||||
@ -918,11 +918,3 @@ We recommend [filtering by another locator](./locators.md#filter-by-childdescend
|
||||
By default, chained selectors resolve to an element queried by the last selector. A selector can be prefixed with `*` to capture elements that are queried by an intermediate selector.
|
||||
|
||||
For example, `css=article >> text=Hello` captures the element with the text `Hello`, and `*css=article >> text=Hello` (note the `*`) captures the `article` element that contains some element with the text `Hello`.
|
||||
|
||||
|
||||
[text]: #text-selector
|
||||
[css]: #css-selector
|
||||
[xpath]: #xpath-selectors
|
||||
[react]: #react-selectors
|
||||
[vue]: #vue-selectors
|
||||
[id]: #id-data-testid-data-test-id-data-test-selectors
|
||||
|
@ -1457,7 +1457,7 @@ This version of Playwright was also tested against the following stable channels
|
||||
|
||||
#### New APIs
|
||||
|
||||
- [`browserType.launch()`](./api/class-browsertype#browsertypelaunchoptions) now accepts the new `'channel'` option. Read more in [our documentation](./browsers).
|
||||
- [`method: BrowserType.launch`] now accepts the new `'channel'` option. Read more in [our documentation](./browsers).
|
||||
|
||||
|
||||
## Version 1.9
|
||||
|
@ -2651,7 +2651,7 @@ This version of Playwright was also tested against the following stable channels
|
||||
|
||||
#### New APIs
|
||||
|
||||
- [`browserType.launch()`](./api/class-browsertype#browsertypelaunchoptions) now accepts the new `'channel'` option. Read more in [our documentation](./browsers).
|
||||
- [`method: BrowserType.launch`] now accepts the new `'channel'` option. Read more in [our documentation](./browsers).
|
||||
|
||||
|
||||
## Version 1.9
|
||||
|
@ -1433,7 +1433,7 @@ This version of Playwright was also tested against the following stable channels
|
||||
|
||||
#### New APIs
|
||||
|
||||
- [`browserType.launch()`](./api/class-browsertype#browsertypelaunchoptions) now accepts the new `'channel'` option. Read more in [our documentation](./browsers).
|
||||
- [`method: BrowserType.launch`] now accepts the new `'channel'` option. Read more in [our documentation](./browsers).
|
||||
|
||||
|
||||
## Version 1.9
|
||||
|
Loading…
Reference in New Issue
Block a user