We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello there,
I try to scrap a website with a form, when I submit the form with this action :
LET buttonSearch =( FOR el IN ELEMENTS(doc, 'button') FILTER el.attributes['data-e2e'] == 'buttonSearch' RETURN el )
CLICK(buttonSearch[0])
When the page is loaded when I try to do
RETURN doc
my result is ""
Why the doc is no more available?
Thx for your help
The text was updated successfully, but these errors were encountered:
What happens on the page when you submit the form?
Sorry, something went wrong.
Hey @ziflex i have no issue I get the right page with all information but the doc is empty
It could be due to the page navigation event. Probably, when the return statement had been executed the page was not fully loaded yet.
How it could be possible, when I introduce a pause of 60 seconds it's the same result. 😨
No branches or pull requests
Hello there,
I try to scrap a website with a form, when I submit the form with this action :
LET buttonSearch =(
FOR el IN ELEMENTS(doc, 'button')
FILTER el.attributes['data-e2e'] == 'buttonSearch'
RETURN el
)
CLICK(buttonSearch[0])
When the page is loaded when I try to do
RETURN doc
my result is ""
Why the doc is no more available?
Thx for your help
The text was updated successfully, but these errors were encountered: