Ok, I solved to this way: from bs4 import BeautifulSoup from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://www.betexplorer.com/soccer/russia/youth-\league/matchdetails.php?matchid=rLu2Xsdi')
pg_src = driver.page_source
driver.close()
soup = BeautifulSoup(pg_src, 'html.parser')
# start from here I do something with soup ...
Windows 10 / Python 3.5.2
Thanks
--
https://mail.python.org/mailman/listinfo/python-list
