ByAltText
getByAltText、queryByAltText、getAllByAltText、queryAllByAltText、findByAltText、findAllByAltText
API
getByAltText(
// If you're using `screen`, then skip the container argument:
container: HTMLElement,
text: TextMatch,
options?: {
exact?: boolean = true,
normalizer?: NormalizerFn,
}): HTMLElement
この機能は、指定されたalt
テキストを持つ要素(通常は<img>
)を返します。ただし、alt
属性を受け入れる要素または(alt
を実装しているかどうかが不明なため)カスタム要素のみをサポートすることに注意してください:<img>
、<input>
、および<area>
(非推奨であるため<applet>
は意図的に除外されています)。
<img alt="Incredibles 2 Poster" src="/incredibles-2.png" />
- ネイティブ
- React
- Angular
- Cypress
import {screen} from '@testing-library/dom'
const incrediblesPosterImg = screen.getByAltText(/incredibles.*? poster/i)
import {render, screen} from '@testing-library/react'
render(<MyComponent />)
const incrediblesPosterImg = screen.getByAltText(/incredibles.*? poster/i)
import {render, screen} from '@testing-library/angular'
await render(MyComponent)
const incrediblesPosterImg = screen.getByAltText(/incredibles.*? poster/i)
cy.findByAltText(/incredibles.*? poster/i).should('exist')
オプション
TextMatchオプション