Puppeteer gets web data?

the source code of the page is as follows:
< td class= "nums" >

                    <i class="pk-no8">8</i>
                <i class="pk-no7">7</i>
                <i class="pk-no10">10</i>
                <i class="pk-no9">9</i>
                <i class="pk-no1">1</i>
                <i class="pk-no2">2</i>
                <i class="pk-no4">4</i>
                <i class="pk-no6">6</i>
                <i class="pk-no5">5</i>
                <i class="pk-no3">3</i>
            </td>

how to get the numbers in this code when you crawl with puppeteer: 8, 7, 10, 9, 1, 2, 4, 6, 5, 3

Sep.22,2021

use the css selector .nums I , and then get the content

Menu