Is there any way to start with a POST request using Selenium?

If you are using Python selenium bindings, nowadays, there is an extension to seleniumselenium-requests:

Extends Selenium WebDriver classes to include the request function
from the Requests library, while doing all the needed cookie and
request headers handling.

Example:

from seleniumrequests import Firefox

webdriver = Firefox()
response = webdriver.request('POST', 'url here', data={"param1": "value1"})
print(response)

Leave a Comment