diff --git a/docs/topics/selectors.rst b/docs/topics/selectors.rst index 80a979650..7f21e1583 100644 --- a/docs/topics/selectors.rst +++ b/docs/topics/selectors.rst @@ -548,6 +548,7 @@ For example, suppose you want to extract all ``

`` elements inside ``

`` elements. First, you would get all ``
`` elements: .. code-block:: pycon + >>> divs = response.xpath("//div") At first, you may be tempted to use the following approach, which is wrong, as