PDF capture
I capture the PDF text from the current URL
Captures the text in a PDF document from the current URL in the browser and binds it to the PDF text variable in the global scope.
I capture the PDF text from the current URL
the PDF text variable in the global scope.I capture the PDF text from the current URL as <name>
Captures the text in a PDF document from the current URL in the browser and binds it to the given name in the global scope.
I capture the PDF text from the current URL as <name>
I capture the PDF text from url "<url>"
Captures the text in a PDF document from a given URL location and binds it to the PDF text variable in the global scope.
I capture the PDF text from url "<url>"
the PDF text variable in the global scope.I capture the PDF text from url "<url>" as <name>
Captures the text in a PDF document from a given URL location and binds it to the given name in the global scope.
I capture the PDF text from url "<url>" as <name>
I capture the PDF text from file "<filepath>"
Captures the text in a PDF document from a local file and binds it to the PDF text variable in the global scope.
I capture the PDF text from file "<filepath>"
the PDF text variable in the global scope.I capture the PDF text from file "<filepath>" as <name>
Captures the text in a PDF document from a local file and binds it to the given name in the global scope.
I capture the PDF text from file "<filepath>" as <name>
I capture the base64 encoded PDF text from <blobRef>
Captures the text in a PDF document from a base64 encoded BLOB and binds it to the PDF text variable in the global scope.
I capture the base64 encoded PDF text from <blobRef>
the PDF text variable in the global scope.I capture the base64 encoded PDF text from <blobRef> as <name>
Captures the text in a PDF document from a base64 encoded BLOB and binds it to the given name in the global scope.
I capture the base64 encoded PDF text from <blobRef> as <name>
Where
<blobRef>is the name of the binding containing the base64 encoded PDF<name>is the name in the global scope to bind the captured PDF text to
Example
Given the pdf blob is "Some base64 encoded PDF blob"
When I capture the base64 encoded PDF text from the pdf blob as content
Then content should contain "Some expected text"