You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Selenium Users
The method is named the same as the HTTP verb, but as Andreas (ato) said, it's not a perfect correlation. WebDriver doesn't perform the HTTP request directly; it instructs the browser to do so. There is no corresponding `post()` method in the WebDriver API. You'll need to instruct the browser to perform the POST operation however you would normally do that as a user. Typically, this is done by clicking on some element on a page, or submitting a form. If you need finer grained control than that, and are expecting to directly manipulate the HTTP request being sent to the server, WebDriver isn't the right library for that.