List index out of range error after scraping with Selenium
Code:
team1 =
team2 =
url = "https://www.basketball-reference.com/leagues/NBA_2019_games.html"
driver = webdriver.Chrome(executable_path=r"chromedriver.exe")
driver.implicitly_wait(30)
driver.get(url)
soup1 = BeautifulSoup(driver.page_source, 'lxml')
for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
driver.find_elements_by_link_text('Box Score')[i].click()
driver.implicitly_wait(10)
soup2 = BeautifulSoup(driver.page_source, 'lxml')
scorebox = soup2.find_all('div','class':'scorebox')[0]
team1.append(scorebox.find_all('a', itemprop='name')[0].text.strip())
team2.append(scorebox.find_all('a', itemprop='name')[1].text.strip())
driver.implicitly_wait(10)
driver.execute_script("window.history.go(-2)")
Error:
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-2-b1355c7b0c2e> in <module>()
12 for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
13
---> 14 driver.find_elements_by_link_text('Box Score')[i].click()
15 driver.implicitly_wait(10)
16
IndexError: list index out of range
Basically I want to scrape team names from each match but then it stops after random amount of iterations. (I would sometimes get 10 sample count, or sometimes 50, and it stops with the error above.
python selenium selenium-webdriver selenium-chromedriver
add a comment |Â
Code:
team1 =
team2 =
url = "https://www.basketball-reference.com/leagues/NBA_2019_games.html"
driver = webdriver.Chrome(executable_path=r"chromedriver.exe")
driver.implicitly_wait(30)
driver.get(url)
soup1 = BeautifulSoup(driver.page_source, 'lxml')
for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
driver.find_elements_by_link_text('Box Score')[i].click()
driver.implicitly_wait(10)
soup2 = BeautifulSoup(driver.page_source, 'lxml')
scorebox = soup2.find_all('div','class':'scorebox')[0]
team1.append(scorebox.find_all('a', itemprop='name')[0].text.strip())
team2.append(scorebox.find_all('a', itemprop='name')[1].text.strip())
driver.implicitly_wait(10)
driver.execute_script("window.history.go(-2)")
Error:
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-2-b1355c7b0c2e> in <module>()
12 for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
13
---> 14 driver.find_elements_by_link_text('Box Score')[i].click()
15 driver.implicitly_wait(10)
16
IndexError: list index out of range
Basically I want to scrape team names from each match but then it stops after random amount of iterations. (I would sometimes get 10 sample count, or sometimes 50, and it stops with the error above.
python selenium selenium-webdriver selenium-chromedriver
add a comment |Â
Code:
team1 =
team2 =
url = "https://www.basketball-reference.com/leagues/NBA_2019_games.html"
driver = webdriver.Chrome(executable_path=r"chromedriver.exe")
driver.implicitly_wait(30)
driver.get(url)
soup1 = BeautifulSoup(driver.page_source, 'lxml')
for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
driver.find_elements_by_link_text('Box Score')[i].click()
driver.implicitly_wait(10)
soup2 = BeautifulSoup(driver.page_source, 'lxml')
scorebox = soup2.find_all('div','class':'scorebox')[0]
team1.append(scorebox.find_all('a', itemprop='name')[0].text.strip())
team2.append(scorebox.find_all('a', itemprop='name')[1].text.strip())
driver.implicitly_wait(10)
driver.execute_script("window.history.go(-2)")
Error:
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-2-b1355c7b0c2e> in <module>()
12 for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
13
---> 14 driver.find_elements_by_link_text('Box Score')[i].click()
15 driver.implicitly_wait(10)
16
IndexError: list index out of range
Basically I want to scrape team names from each match but then it stops after random amount of iterations. (I would sometimes get 10 sample count, or sometimes 50, and it stops with the error above.
python selenium selenium-webdriver selenium-chromedriver
Code:
team1 =
team2 =
url = "https://www.basketball-reference.com/leagues/NBA_2019_games.html"
driver = webdriver.Chrome(executable_path=r"chromedriver.exe")
driver.implicitly_wait(30)
driver.get(url)
soup1 = BeautifulSoup(driver.page_source, 'lxml')
for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
driver.find_elements_by_link_text('Box Score')[i].click()
driver.implicitly_wait(10)
soup2 = BeautifulSoup(driver.page_source, 'lxml')
scorebox = soup2.find_all('div','class':'scorebox')[0]
team1.append(scorebox.find_all('a', itemprop='name')[0].text.strip())
team2.append(scorebox.find_all('a', itemprop='name')[1].text.strip())
driver.implicitly_wait(10)
driver.execute_script("window.history.go(-2)")
Error:
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-2-b1355c7b0c2e> in <module>()
12 for i in range(len(soup1.find_all('a', href=True, text='Box Score'))):
13
---> 14 driver.find_elements_by_link_text('Box Score')[i].click()
15 driver.implicitly_wait(10)
16
IndexError: list index out of range
Basically I want to scrape team names from each match but then it stops after random amount of iterations. (I would sometimes get 10 sample count, or sometimes 50, and it stops with the error above.
python selenium selenium-webdriver selenium-chromedriver
python selenium selenium-webdriver selenium-chromedriver
asked Nov 10 at 20:41
Chipmunkafy
12611
12611
add a comment |Â
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid â¦
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid â¦
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53243213%2flist-index-out-of-range-error-after-scraping-with-selenium%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown