How to extract the players name

I am trying to extract the player name and the description from the website - https://y20india.in/delhi-capitals-squad-ipl-2024/

But the code did not provide the list of player name and the role.

from bs4 import BeautifulSoup
import requests
import pandas as pd
page_to_scrape = requests.get("https://y20india.in/delhi-capitals-squad-ipl-2024")
soup = BeautifulSoup(page_to_scrape.text,"html.parser")
playername = soup.findAll("td")
for results in playername:
print(results.text)

Hi,

Please choose the selector type - Table and everything should be fairly simple with point and click.

Reference sitemap:

{"_id":"y20india","startUrl":["https://y20india.in/delhi-capitals-squad-ipl-2024/"],"selectors":[{"columns":[{"extract":true,"header":"Player","name":"Player"},{"extract":true,"header":"Role","name":"Role"},{"extract":true,"header":"Price","name":"Price"}],"id":"DC Retained Players","multiple":true,"parentSelectors":["_root"],"selector":"table:nth-of-type(1)","tableDataRowSelector":"tr:nth-of-type(n+2)","tableHeaderRowSelector":"tr:nth-of-type(1)","type":"SelectorTable"}]}