N
N
Nual2018-12-21 21:13:21
Parsing
Nual, 2018-12-21 21:13:21

How to programmatically fill out a form and submit a request?

The site
https://registers.esma.europa.eu/publication/search...
has a request form with the Instrument identification code field .
Is it possible using VBA or another technology (what?) to enter the desired value in the field, for example "IE00B53SZB19" and also programmatically get the result from the form.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
AWEme, 2018-12-21
@Nual

Look in the inspector to see what requests the browser is sending, then repeat them and parse the response.
In the case of Python - HTTP requests can be sent through the module requests, if the response comes in the form of an html page, then parse with BeautifulSoup/lxml, and if in the form of json, then parse as a dictionary.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question