docker-python-chromedriver icon indicating copy to clipboard operation
docker-python-chromedriver copied to clipboard

download folder path?

Open vincentzhou2013 opened this issue 7 years ago • 2 comments

I'm using this container to download a file from a web site. but I cannot find the download folder anyway. Could you give me the download folder path or if it doesn't exist, how to create it? Thanks.

vincentzhou2013 avatar Oct 26 '18 14:10 vincentzhou2013

I'm in the same boat. Just using my local (or Vagrant), I can use

options.add_experimental_option(
        'prefs', {
            'download.default_directory': '/usr/workspace/',
            'download.prompt_for_download': False,
            'download.directory_upgrade': True,
            'safebrowsing.enabled': False,
            'safebrowsing.disable_download_protection': True
        }
)

but this does not seem to work here. It looks like it's putting temporary or partial download files in the /tmp folder. $ ls -a /tmp will show files that seem to correspond with the downloads, but it doesn't apear to do it correctly.

timothyshort avatar Jan 26 '19 16:01 timothyshort

I'm using this container to download a file from a web site. but I cannot find the download folder anyway. Could you give me the download folder path or if it doesn't exist, how to create it? Thanks.

berwinjoule avatar May 28 '19 05:05 berwinjoule