-
When I try to download files using the Edge browser, they don't end up in the "downloaded_files" folder as expected. Instead, they go to the "C:\Downloads" folder. Even though my script just clicks the download button, this happens. Can you help me fix this? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
In order to fix #1897 ("Personalize your web experience" notification appears when running on Edge), I set Edge to always use Edge Guest Mode doesn't allow changing the default download location. However, since extensions don't work in Guest Mode, I added a way to bypass Guest Mode and use normal mode: Add |
Beta Was this translation helpful? Give feedback.
In order to fix #1897 ("Personalize your web experience" notification appears when running on Edge), I set Edge to always use
--guest
mode: #1897 (comment)Edge Guest Mode doesn't allow changing the default download location. However, since extensions don't work in Guest Mode, I added a way to bypass Guest Mode and use normal mode: Add
--disable-csp
/disable_csp=True
, which will use normal mode, and then files will be correctly saved to the./downloaded_files/
folder.