Virusback
Virusback
def Thread(self): try: threadsList = [] for i in range(self.threadsCount): thread = Thread(target=self.Starter, name='Thread{}'.format(str(i + 1))) threadsList.append(thread) for eachThread in threadsList: eachThread.setDaemon(True) eachThread.start() sleep(self.sleepTime) for eachThread in threadsList: eachThread.join() except...
Hello guys im using undetectable chrome driver and it works perfectly except when im using it with with multipale theards it only interacts with 1 theard only which is the...