Skip to content

Instantly share code, notes, and snippets.

@thepycoach
Last active October 18, 2020 19:10
Show Gist options
  • Select an option

  • Save thepycoach/ddc2d1e2b03536ba2975bb45ff9b7e91 to your computer and use it in GitHub Desktop.

Select an option

Save thepycoach/ddc2d1e2b03536ba2975bb45ff9b7e91 to your computer and use it in GitHub Desktop.
for match in single_row_events:
# teams
for team in match.find_elements_by_class_name('EventTeams-styles-titles'):
teams.append(team.text)
# scores
for score in match.find_elements_by_class_name('EventScores-styles-scores'):
scores.append(score.text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment