I'm looking to loop through these integers, inputting each into a web browsers textbox. I've already set up the python code to open chrome, navigate to the site, login, and navigate to the text box (unfortunately it's at work - I can reattach it here tomorrow morning), but how do I get it to take the first user input from below, type it into the textbox - let's pretend its find_element_by_id('thetextbox') - I'll get it to press the enter button at the bottom of the page here, but then navigate back to the same textbox as before and enter the second user input? And then how would it know to stop at however many integers were inputted?
Sorry if it's a bit confusing, I really should have sent the code to myself :(
x = raw_input("Enter list of integers separated by a space:")
integers = [int(i) for i in x.split()]
forloop over yourintegersarray is a good place to start.