How to download more than one Chromedriver file without asking for download authorization

Asked

Viewed 48 times

1

I’m trying to download more than one file by Chrome and keeps popping up the permission message inserir a descrição da imagem aqui

would have some way to automatically accept

1 answer

1

var options = new ChromeOptions();
options.AddUserProfilePreference("profile.default_content_setting_values.automatic_downloads", 1);

I found the solution for whoever needs it!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.