I have been trying to scrape a table from the FAA's website --> https://www.faa.gov/uas/legislative_programs/section_333/333_authorizations/ using the Dataminer and Scaper chrome extension. The source code of the table looks something like this
<table id="auth_granted" class="striped">
<caption class="visuallyHidden">Authorizations Granted Via Section 333 Exemptions</caption>
<thead>
<tr>
<th scope="col">Grant Issued</th>
<th scope="col">Petitioner</th>
<th scope="col">Operation / Mission</th>
<th scope="col">Authorizations <small>(includes both petition and grant of exemption documents)</small></th>
</tr>
</thead>
<tbody>
<tr>
<td width="10%">9/25/2014</td>
<td width="25%">Astraeus Aerial</td>
<td width="35%">Closed-set filming</td>
<td width="30%"><a href="http://www.regulations.gov/#!docketDetail;D=FAA-2014-0352">View Documents</a></td>
</tr>
My problem is finding the correct xpath to display the table rows. I have been trying
//*[@id="auth_granted"]/tbody/tr[1]/td[2]
but am having no luck. Does anyone have any thoughts? Suggestions would be greatly appreciated!