To get Author Namefrom the following item excluding <span>...:
<div class="details__instructor">
Author Name<span ng-show="job_title">, Entrepreneur</span>
</div>
use childNodes[0]. For example:
document.querySelector('div.details__instructor').childNodes[0]
The result is an object:
"Author Name"