Skip to content

Commit

Permalink
Removed unnecessary print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
ViralMehtaSWE committed Mar 17, 2018
1 parent ff5f717 commit e25e2af
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions scrapy/http/request/form.py
Expand Up @@ -168,7 +168,6 @@ def _get_clickable(clickdata, form):
if the latter is given. If not, it returns the first
clickable element found
"""
print("form =", form.__dict__)
clickables = [
el for el in form.xpath(
'descendant::*[(self::input or self::button)'
Expand All @@ -178,7 +177,6 @@ def _get_clickable(clickdata, form):
'|descendant::button[not(@type)]',
namespaces={"re": "http://exslt.org/regular-expressions"})
]
print("clickables =", clickables)
if not clickables:
return

Expand Down

0 comments on commit e25e2af

Please sign in to comment.