假设我的 component.tsx 文件中有这段代码。是否有可能检查存在特定测试 ID 的标签名称?
<section>
<h1 data-testid="page-header">
Welcome!
</h1>
<Link data-testid="about-page-link" to="/about">
Go to about
</Link>
</section>
我有以下代码通过测试文件中的测试 id 获取元素。
const headerElement = screen.getByTestId('page-header');
是否可以检查 h1 标签上是否存在以下标签?
简而言之,我需要检查标签page-header
上是否存在测试 IDh1