stats.update(time_func(f"[{self.driver_name}] Count mails with more than 5 attachments and Mr/Mrs","attach5_mr_mrs",lambda:self.attach5_mr_mrs(driver),NUM_RUNS))
stats.update(time_func(f"[{self.driver_name}] Sum the number of attachment from mail that have less than 5 attachments","get_sum_attachment_less_5",lambda:self.get_sum_attachment_less_5(driver),NUM_RUNS))
stats.update(time_func(f"[{self.driver_name}] Count mails that have a lorem sentence","search_lorem",lambda:self.search_lorem(driver),NUM_RUNS))
stats.update(time_func(f"[{self.driver_name}] Count mails that have a mail that ends with microsoft.com","search_mails_ends_microsoftcom",lambda:self.search_mails_ends_microsoftcom(driver),NUM_RUNS))
stats.update(time_func(f"[{self.driver_name}] Update all thread to add a field with the total replies per last name","update_add_replies_per_last_name",lambda:self.update_add_replies_per_last_name(driver),NUM_RUNS))
stats.update(time_func(f"[{self.driver_name}] Update all thread to add a field with the total replies per subject","update_add_replies_per_subject",lambda:self.update_add_replies_per_subject(driver),NUM_RUNS))