Sending a POST request using session.request given header and payload
There is a website that I am trying to send post requests to. I am trying to scrape the data that loads after I type a keyword in the search bar of that page. In order to get to the search bars, there are several steps. I have sent requests that work until that point, but the last request which includes sending the request for the keyword, does not work. Even though it gives a 200 status code, the response is still not expected.
Sending a post request after a response is received from a previous request
I have already sent in a post request that received a correct response.
I want to now send another post request. I am using payload and request headers to do that.