I have a Selenium script set up on a loop to fuzz input fields on an webapp. There's 38 input divs per fuzzing permutation so iterating through all of the fields and modifying them with send_keys() takes ~5 seconds. I'm wondering if instead of iterating through each input div individually, is it possible to modify all 38 input divs simultaneously? Something like a "multicast input to all divs" function?
requestsstackoverflow.com/questions/39731338/…