반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 선택자
- csr
- devtools
- SSR
- Testing
- aws
- custom command
- https
- CSS
- typeScript
- vue-cli
- msw
- import.meta.env
- api test
- 비동기
- vue3
- ts error
- caching
- svelte
- rendering
- ViTE
- vue
- web vital
- e2e
- TLS
- Cypress
- CloudFlare
- http3
- QUIC
- JavaScript
Archives
- Today
- Total
목록cypress method (1)
Develop Note by J.S.
[Cypress] Cypress Methods & Assertions정리
Cypress에서 주로 사용되는 Method의 기능설명 및 Assertions, 주 사용 기능 예제 대해 정리하였습니다. 1. Cypress Method cy.visit(): 특정 URL에 대한 페이지 방문을 수행합니다. cy.get(): DOM 요소를 선택하기 위해 사용되며, 선택자, 클래스, ID 등을 통해 요소를 찾습니다. - cy.get('[data-cy=Selector]') .contains(): 텍스트를 기반으로 DOM 요소를 선택합니다. 해당 텍스트를 포함하는 요소를 찾습니다. .type(): 텍스트 입력을 시뮬레이션하기 위해 사용됩니다. 입력 필드에 텍스트를 입력하는 동작을 수행합니다. - enter 키 입력 cy.get('[data-cy=search]').type({enter}) .cli..
FrontEnd/Cypress
2023. 7. 12. 15:58