I am using selenium
and chrome-driver
to scrape data from some pages and then run some additional tasks with that information (for example, type some comments on some pages)
My program has a button. Every time it's pressed it calls the thread_(self)
(bellow), starting a new thread. The target function self.main
has the code to run all the selenium work on a chrome-driver
.
def thread_(self): th = threading.Thread(target=self.main) th.start()
My problem is that after the user press the first time. This th
thread will open browser A and do some stuff. While browser A is doing some stuff, the user will press the button again and open browser B that runs the same self.main
. I want each browser opened to run simultaneously. The problem I faced is that when I run that thread function, the first browser stops and the second browser is opened.
I know my code can create threads infinitely. And I know that this will affect the pc performance but I am ok with that. I want to speed up the work done by self.main
!