I am having issues returning the text found through an xpath. First I needed to find the element through css selector:
ticker1 = browser.find_element_by_css_selector('[data-id="1"]')
print(ticker1.get_attribute('innerHTML'))
<div class="header_card"><div class="header_card_title">Day's Title<i class="fa fa-info-circle 
toolTrigger" data-title="Day's Title" data- 
id="DaysTitle-tooltip" data-model="what-is-this"></i></div><div 
class="header_card_trend_symbol headerTrend" data-title="" data-id="1" data-process="" 
data-categories="" data-datapoints=""><i class="fa fa-arrow-circle-o-down ph_trend_red"></i></div> 
<div class="header_card_metric_value" data-id="1"><span>$0</span></div></div><div 
class="header_bars_container"><a href="#" class="dropdown-toggle" data-toggle="dropdown" 
data-boundary="viewport" role="button" aria-haspopup="true" aria-expanded="false"><i class="fa fa- 
bars optionsIconDropDown"></i></a><ul class="dropdown-menu drop-sm" style="position: relative; right: 
10px; top: -16px !important; "><li></li><li><a href="#" class="headerTrend" data-title="Prior Day's 
Production" data-id="1" data-open="" data-process="" data-categories="" data-datapoints="">Trend</a> 
</li></ul></div>
I then access the sub-element through xpath
t1l = ticker1.find_element_by_xpath(".//div[@class='header_card_title']")
print(t1l.get_attribute('innerHTML'))
Day's Title<i class="fa fa-info-circle toolTrigger" data-title="Day's Title" 
data-id="PriorDaysProduction-tooltip" data-model="what-is-this"></i>
I have tried .text, get_attribute('text') , get_attribute('values') all return ''
 
    