Handling errors while working with code snippets

83 views Asked by At

I am running a bunch of code all at once in python by copying it from my editor and pasting it into python. This code includes nested for loops. I am doing some web scraping and the program quits at different times. I suspect that this is because it doesn't have time to load. I get the following error (once again - the program scrapes different amounts of text each time):

Traceback (most recent call last):
  File "<stdin>", line 35, in <module>
IndexError: list index out of range

First, what does line 35 refer to? Is this the place in the relevant inner for-loop?

Second, I think that the error might be caused by a line of code using selenium like this:

driver.find_elements_by_class_name("button")[j-1].click()

In this case, how can handle this error? What is some example code with either explicit waits or exception handling that would address the issue?

3

There are 3 answers

0
PhilG On BEST ANSWER

You can try your code and catch an IndexError exception like this:

try:
    # your code here
except IndexError:
    # handle the error here

An IndexError happens when you try to access an index of a list that does not exist. For example:

>>> a = [1, 2, 3]
>>> print(a[10])
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
IndexError: list index out of range

It's difficult to say how you should handle the error without more detail.

0
ivan_pozdeev On

When working with code snippets, it's convenient to have them open in a text editor and either

1
AtAFork On

It means that [j-1] doesn't exist for a given value of j, possibly if j-1 exceeds the max number of elements in the list