我正在尝试使用 BeautifulSoup 返回要使用 Selenium 单击的单元格的 ID。每次加载页面时 ID 都会更改,因此我试图根据以下类别查找特定单元格:
<table cellspacing="0" role="presentation" id="x-auto-667" class=" x-btn x-component x-btn-text-icon" style="margin-right: 0px;">
我尝试了很多变体:soup.find(class=' x-btn x-component x-btn-text-icon')['id']
没有成功。我会很感激任何帮助。