D
D
Davidd20082021-06-08 02:46:18
Python
Davidd2008, 2021-06-08 02:46:18

Can I somehow open my browser through selenium so that all inputs, etc., are saved in it?

Can I somehow open my browser through selenium so that all inputs, etc., are saved in it?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
J
JokerGTS, 2021-06-09
@David2008

As for your browser - hardly, only supported by selenium. In particular, for chrome, you can use your user folder, (Chrome_data), in which all data is saved:

chrome_options.add_argument('user-data-dir=' + os.getcwd() + '\\Chrome_data\\')

But before saving anything, one needs to run selenium with the argument above and create a new browser (user) profile. After creation, all data will be stored in a folder.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question