By using an embedded webbrowser, I have managed to navigate to a site, interact with welcoming pop-ups, login with username and password, search for records in a database, access the records, and populate the data on the record for submission. Well, almost. On the final page, there are multiple sections with radio buttons to select, 1 for each category. The problem is, they have the same name. For example (much more simple than the actual source):
Record to Update...
1. Choose a day of the week:
monday, tuesday, wednesday
2. Choose a time of the day:
morning, afternoon, evening
I can automate the choosing based on values in my worksheets, but the problem is that (in this example) the ID for .checked is the same:
Monday = "A"
Tuesday = "B"
Wednesday = "C"
Morning = "A"
Afternoon = "B"
Evening = "C"
So if I want to pick Monday and Afternoon, it ends up just stopping at choosing tuesday, since it doesn't know that I want the "B" from the next set. Each section to choose has different names (ie, choose_day and choose_time).
How do I tell the browser which section I want to update, and then move on? I've come to far to be stuck at the very end...
Thanks!