i\'m trying to save an image from a website using selenium server & python client. i know the image\'s URL, but i can\'t find the code to save it, either when it\'s the the
I haven't used selenium, but if you know the image's URL, why not just do:
from urllib import urlretrieve urlretrieve(url, filename)
which will save the url to the filename. more info here