I cannot click on the button but every method I tried has failed. Here is the result of clicking "inspect" in chrome:
<button class="rg-run-report-button md-raised md-primary md-ink-ripple md-button" type="submit" ng-transclude="" ng-click="reportCtrl.generateReport()" ng-disabled="!(reportCtrl.isGenerateButtonEnabled())">
RUN REPORT
<div class="md-ripple-container" style=""></div></button>
I am going off of this and building an Xpath like this:
driver.find_element_by_xpath("//button[contains(text(), 'RUN REPORT')]").click()
The text "RUN REPORT" has a lot of awkward whitespace around it. I am not sure what to do since I have tried to locate the button via its attributes.