from selenium import webdriver
from bs4 import BeautifulSoup
driver = webdriver.PhantomJS()
driver.get("http://www.myscore.ru/match/nu1Z5Wgq/#h2h;all")
html = BeautifulSoup(driver.page_source)
print([x.text for x in html.find_all("span", {"class": "score"})])