일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- QA
- 자동화
- testing method
- 유지보수성 테스트
- 애자일
- ISTQB
- 테스트 설계 기법에 따른 분류
- Testing
- Test Case
- SQA
- 셀레니움
- risk-based testing
- 품질
- Software life cycle model
- test
- 테스트
- Python
- selenium
- regression test
- 테스트 케이스
- maintainability test
- 비기능테스트
- 테스트케이스
- 파이썬
- RBT
- testcase
- agile
- seleium
- csts
- 위험 기반 테스트
Archives
- Today
- Total
목록ifream (1)
Study_Note
selenium : python iframe 전환하기
셀레니움에서 iframe으로 전환하는 방법은 switch_to.frame() 메서드를 사용하는 것입니다. iframe 안으로 전환하기 위해서는 우선 해당 iframe의 WebElement 객체를 식별해야 합니다. 이후에 switch_to.frame() 메서드를 사용하여 해당 iframe으로 전환할 수 있습니다. 전환 이후 다시 상위 레벨로 돌아오려면 switch_to.default_content() 메서드를 사용합니다. 아래는 예시 코드입니다. from selenium import webdriver driver = webdriver.Chrome() driver.get("https://www.example.com") # iframe 식별자를 통해 iframe 내부로 전환 iframe = driver.fin..
selenium (with python)
2023. 4. 28. 17:14