xpath select first instance

master
Raymond Berger 2025-01-30 19:47:31 -05:00
rodzic 1249aa7f2c
commit 7dd01d3ab4
1 zmienionych plików z 6 dodań i 0 usunięć

@ -45,6 +45,12 @@ filter: `//h3/parent::a//@href`
//img//@src
```
# Select just the first instance of something
```
xpath:(//h3[contains(@class, 'PagePromo-title')])[1]
```
This selects just the first instance of an h3 that contains the class PagePromo-title
# Select by `data-` source
```