driver.get('https://debank.com/profile/{}/nft'.format(address))
tree = html.fromstring(driver.page_source)
find_nft_balance = tree.xpath('/html/body/div[1]/div/div[2]/div[1]/div[3]/div/div[2]/div[1]/span[1]/text()[2]')
print(find_nft_balance)
find_nft_balance = tree.xpath('//span[contains(@class, "NFT_totalAssetText__")]')