I'm having an issue issue with:
slots = rows[i].find_elements_by_tag_name('td')
prodFolder = slots[0].text
prodType = slots[2].text
prodId = slots[1].text
values = [prodFolder, prodId, prodType]
print values
When I go to print values I get an extra character at the front of each item in the list:
[u'active_e', u'1193', u'Active E']
This is probably the result of .text providing some extra data that I do not want. Is there an elegant way to solve this? (not using brute force to remove the extra u's?)