I'm a Python neophyte working on a fun little scraping project. Trying to pull info from here: http://www.airfleets.net/flottecie/American%20Airlines.htm
I'm in Python 2 and using Selenium
There's a table on the page with aircraft details. I want to iterate through the second column of this table, which is labeled "Active". Normally, I would select the table by using find_element_by_id. However, this table doesn't have an id tag. I think I need to find the table by find_element_by_xpath, but I am unsure of the path syntax to find the table and then also the rows in the second column.
In summary, how can I iterate through the rows of a table if the table does not have any identifying tags?


lst[x]),forloop (for x in lst), etc. you can event usefind_element_bywith every element on list to get "subelement". BTW. Chrome and Firefox has DevTools and you can see "xpath" or "css selector" (sometimes you need install extension)