[python 인터넷, selenium] selenium iframe 처리하기

selenium 실습을 하는 도중 iframe에 많이 막히는 것 같습니다.

iframe 처리에 대해 알아보겠습니다.

 

메일을 작성하는 실습이 있는데 메일 본문을 작성하는 부분이 iframe으로 되어 있습니다.

iframe은 html안에 또 다른 html이 오는 경우이기 때문에 switch_to_frame() 함수를 사용해 iframe 안에있는 elenemt를 확인할 수 있게 해줘야 합니다. 그리고 iframe에서 원래있던 전체 웹 페이지로 나오려면 switch_to_default_content() 함수로 빠저나와야 합니다.

만약 iframe 태그에 name 속성이 있다면 driver.switch_to_frame("iframe name 값")으로 해당 iframe으로 focus를 맞춰줄수 있습니다. 그런데...

chrome의 개발자 도구로 소스를 확인해 보면 iframe에 대한 name도 없습니다.

 

iframe 값을 가져오는 방법은 여러가지가 있을 수 있습니다. 그중 iframe 태그를 확인하는 방법과 iframe을 감싸고 있는 상위 div 태그의 class로 확인하는 방법을 알아보겠습니다.

 

먼저 iframe 태그로 확인하는 방법입니다.

하나의 tag를 확인하는 함수는 find_element_by_tag_name 입니다. 그리고 여러개의 tag를 확인하는 함수는 find_elements_by_tag_name 입니다. 

find_elements_by_tag_name를 사용하면 현재 웹 페이지에서 해당 tag를 모두 배열로 가져오게 됩니다.

driver.find_elements_by_tag_name('div')로 하면 웹 페이지의 처음부터 끝까지 순서대로 div를 모두 가저오게 됩니다. 이걸 이용해 현재 웹 페이지에서 iframe을 모두 찾아올 수 있습니다.

 
 
 
# -*- coding: utf-8 -*-
import time
from selenium import webdriver
 
# chromedriver .
driver = webdriver.Chrome('./chromedriver')
 
# find_element_by_ element 30 .
driver.implicitly_wait(30)
 
# (worksmobile) .
driver.get('https://mail.worksmobile.com/')
 
# .
driver.find_element_by_id('user_id').send_keys('tongchun@ngle.co.kr')
 
# .
driver.find_element_by_id('loginStart').click()
 
# .
driver.find_element_by_id('password').send_keys('123456')
 
# .
driver.find_element_by_id('loginBtn').click()
 
# () .
driver.find_element_by_link_text('').click()
 
# .
driver.find_element_by_id('toInput').send_keys('tongchun@ngle.co.kr')
 
# .
driver.find_element_by_id('subject').send_keys('selenium ?')
 
# iframe .
iframes = driver.find_elements_by_tag_name('iframe')
print(' iframe %d .' % len(iframes))
 
# iframes for .
# enumerate() index() .
for i, iframe in enumerate(iframes):
try:
print('%d iframe .' % i)
 
# i iframe .
driver.switch_to_frame(iframes[i])
 
# iframe .
print(driver.page_source)
 
# frame .
driver.switch_to_default_content()
except:
# exception frame .
driver.switch_to_default_content()
 
# frame .
print('pass by except : iframes[%d]' % i)
 
# for .
pass
 
# ifrime .
driver.switch_to_frame(iframes[1])
 
# editor element .
editor = driver.find_element_by_class_name('workseditor')
 
# editor element .
editor.send_keys('. .\nselenium ?\n . . .\n ~')
 
# ifrime frame .
driver.switch_to_default_content()
 
# .
driver.find_element_by_id('sendBtn').click()
 
 
 
 
 

위 코드처럼 iframe을 모두 불러온 다음 for문을 이용해 iframe안에 소스를 확인할 수 있습니다.

경축! 아무것도 안하여 에스천사게임즈가 새로운 모습으로 재오픈 하였습니다.
어린이용이며, 설치가 필요없는 브라우저 게임입니다.
https://s1004games.com

메일 본문을 작성하는 editor가 몇번째 iframe에 있는지 확인하고 switch_to_frame() 함수로 들어갈 수 있습니다.

 

다음은 iframe 상위에 있는 div 태그의 class를 이용하는 벙법입니다.

iframe이 있는 html 소스는 아래와 같이 되어 있습니다.

 

 
 
<div class="editor_body">
<div>
<textarea tabindex="5" style="display: none; border: none; outline: none; resize: none; overflow: auto; width: 100%; height: 445px;"></textarea>
<textarea tabindex="5" style="display: none; border: none; outline: none; resize: none; overflow: auto; width: 100%; height: 445px;"></textarea>
<iframe style="width: 100%; height: 445px;" frameborder="0" smart-mod="wysiwyg" tabindex="5"></iframe>
</div>
</div>
 
 
 
 
 

iframe의 상위 div 중 <div "editor_body">를 이용하는 방법입니다.

find_element_by_css_selector() 함수로 editor_body 안의 iframe을 확인할 수 있습니다.

# -*- coding: utf-8 -*-

import time
from selenium import webdriver
 
# chromedriver .
driver = webdriver.Chrome('./chromedriver')
 
# find_element_by_ element 30 .
driver.implicitly_wait(30)
 
# (worksmobile) .
driver.get('https://mail.worksmobile.com/')
 
# .
driver.find_element_by_id('user_id').send_keys('tongchun@ngle.co.kr')
 
# .
driver.find_element_by_id('loginStart').click()
 
# .
driver.find_element_by_id('password').send_keys('123456')
 
# .
driver.find_element_by_id('loginBtn').click()
 
# () .
driver.find_element_by_link_text('').click()
 
# .
driver.find_element_by_id('toInput').send_keys('tongchun@ngle.co.kr')
 
# .
driver.find_element_by_id('subject').send_keys('selenium ?')
 
# class selector iframe .
editor_frame = driver.find_element_by_css_selector('.editor_body iframe')
 
# ifrime .
driver.switch_to_frame(editor_frame)
 
# editor element .
editor = driver.find_element_by_class_name('workseditor')
 
# editor element .
editor.send_keys('. .\nselenium ?\n . . .\n ~')
 
# ifrime frame .
driver.switch_to_default_content()
 
# .
driver.find_element_by_id('sendBtn').click()
 
 
 
 
 

html과 css를 이용해 여러 방법으로 elenemt를 확인할 수 있습니다.

[출처] https://dejavuqa.tistory.com/198

 

 

 

 

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
70 [python 일반] How to Update All Python Packages : 설치된 파이썬 패키지 모두 업데이트 하기 file 졸리운_곰 2024.03.16 0
69 [python, C++] Interfacing C++ and Python with the Python API : C++ 및 Python과 Python API의 인터페이스 file 졸리운_곰 2023.08.18 29
68 [python 일반] 파이참 에러 : Fatal Python error: init_stdio_encoding: failed to get the Python codec name of the stdio encoding file 졸리운_곰 2023.07.06 15
67 [Python] 문자열에서 파일명 또는 폴더명으로 시스템상 지원되는 글자를 제외하고 삭제하기 졸리운_곰 2023.06.04 24
66 [python 일반] 파이썬 win32com 사용시 에러 해결 file 졸리운_곰 2023.06.04 119
65 [python 일반] win32com.gen_py 라이브러리의 오류 해결 졸리운_곰 2023.06.03 26
64 [Python 일반] 파일(폴더) 이름에 사용할 수 없는 특수 문자 제거 졸리운_곰 2023.06.03 24
63 [Python 일반] 파이썬에서 재귀적으로 깊은 계층적 디렉토리를 생성하기 위한 makedirs 졸리운_곰 2023.06.03 22
62 [Python 일반] [python] requirements.txt로 패키지 관리하기 졸리운_곰 2023.05.05 18
61 [python 일반] pip이용하여 requirements.txt 만들기 file 졸리운_곰 2023.05.04 33
60 [Python 일반] 파이썬에서 프로그램 일시중지하는 세가지 방법 How to Pause in python 졸리운_곰 2023.03.17 22
59 [Python] 파이썬 프로젝트의 구조 file 졸리운_곰 2022.11.18 27
58 [python] [Python] 파이썬 Source의 기본 형태 file 졸리운_곰 2022.11.18 7
57 [python] 파이썬 스케줄 수행 - schedule, apscheduler file 졸리운_곰 2022.11.13 20
56 [python 일반] python 난독화 및 실행파일 한 번에 만들기 졸리운_곰 2022.11.06 29
55 [python] Apache Airflow 소개 및 실습하기(기초) file 졸리운_곰 2022.07.25 39
54 [python] Python Console Input & Output Tutorial 졸리운_곰 2021.11.06 20
53 [python][파이썬 조건문(if-elif-else)] 졸리운_곰 2021.07.24 26
52 [python] 파이썬 for 문 졸리운_곰 2021.07.24 19
51 [python][파이썬 기초] 48 파이썬으로 파일 만들기 졸리운_곰 2021.07.24 30
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED