I've looked through similar questions, and they all suggest using urllib/requests or taking a screenshot.
Downloading the image with urllib/requests presents a different user agent and doesn't come with my session cookies. Taking a screenshot limits the resolution to what is shown on my screen.
Is there a way to essentially right-click and "copy image" so I can save the image to file without redownloading the image or settling for the scale that is shown on the screen?
Edit:
JavaScript simulate right click through code is the closest thing to a legitimate answer within the thread of which this was suggested to be a duplicate. However, it is javascript, and not python.
The screenshot answer, which appears to be the de facto solution, doesn't fit my needs because the image I'm trying to capture is of higher resolution than is the region of the screen it is scaled to encompass.
I used the element.screenshot_as_png technique on a google images search result, and the image which "save as" returns with resolution 2932x718, becomes a cropped screenshot of dimensions 433x106. I want the full resolution image without downloading it again (which I admit "save as" does).
Since I can "copy image" without downloading the image again, I should be able to do something of the sort through selenium (preferably without requiring that I learn javascript). Maybe this can be done with selenium-wire(?), although I'd rather as few dependencies as possible.