Selenium AttributeError: list object has no attribute find ...
stackoverflow.com › questions › 39356818Sep 07, 2016 · AttributeError: 'list' object has no attribute 'find_elements_by_xpath' This occurs because you're going to find nested WebElement on data list that's why you're calling as data.find_element_by_xpath() or data.find_elements_by_xpath() which is absolutely wrong. Actually find_element() or find_elements() is used to search the element on the page context or the context of the WebElement instead of list.