Selenium Post method Selenium Post method selenium selenium

Selenium Post method


You can try using selenium-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 Firefoxwebdriver = Firefox()response = webdriver.request('POST', 'url here', data={"param1": "value1"})print(response)