[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

 

 

 

 

 

 

본 웹사이트는 광고를 포함하고 있습니다.
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
번호 제목 글쓴이 날짜 조회 수
391 [python 인터넷][네이버 뉴스 크롤링] python crawling - 네이버 뉴스 기사 크롤링 file 졸리운_곰 2022.06.28 37
390 [python RPA] Robotic Process Automation with Python file 졸리운_곰 2022.03.03 37
389 [python RPA] 3 WAYS TO DO RPA WITH PYTHON file 졸리운_곰 2022.03.03 11
388 [Python RPA] [Python] - 모듈탐구 pyautogui - Python 폴터가이스트 졸리운_곰 2022.03.03 27
387 [python][자료구조] python anaconda 에서 mysql 접속 졸리운_곰 2022.01.25 78
386 [python][anaconda] 파이썬3(python3) 설치하고 환경(env) 관리하기 - 아나콘다3(anaconda3)를 활용한 설치 file 졸리운_곰 2022.01.20 16
385 [python][인공지능] [TensorFlow] Anaconda 가상환경 이용하여 TensorFlow GPU 설치 졸리운_곰 2022.01.20 37
384 [python][anaconda] 파이선 아나콘다 최신 버전 업데이트하기 file 졸리운_곰 2022.01.20 38
383 [python 자료구조] 림코딩의 파이썬으로 csv 다루기 강좌 (읽기,쓰기,수정,추가) 졸리운_곰 2022.01.16 48
382 [Python 데이터분석][python 데이터분석 프로덕션] [Python] Docker를 사용한 Dash 웹앱 생성 file 졸리운_곰 2021.12.10 40
381 [python][flask] bitnami의 django 서버로 flask 서비스 file 졸리운_곰 2021.12.10 14
380 [python 인터넷] How to Select CheckBox and Radio Button in Selenium WebDriver 졸리운_곰 2021.11.26 40
379 [python 인터넷] [Python] Selenium 사용하기 (+PhantomJS) file 졸리운_곰 2021.11.26 16
378 [python 인터넷] Python Selenium(셀레니움) 크롬창 활성 탭 변경하기 file 졸리운_곰 2021.11.26 15
» [python 인터넷 ,selenium] selenium iframe 처리하기 file 졸리운_곰 2021.11.26 36
376 [python 인터넷] Selenium에서 특정 element가 갑자기 클릭이 되지 않을 때 (python) 졸리운_곰 2021.11.26 14
375 [python 인터넷] Selenium Python button 클릭 file 졸리운_곰 2021.11.26 16
374 [python 인터넷] Tor browser 로 selenium webdriver 크롤링 ip 우회 [Windosws] 졸리운_곰 2021.11.26 17
373 [python 인터넷] 파이썬 셀레니움을 이용한 DC인사이드 자동 글쓰기 file 졸리운_곰 2021.11.26 87
372 [Python 인공지능] TextRank 를 이용한 키워드 추출과 핵심 문장 추출 (구현과 실험) file 졸리운_곰 2021.11.22 25
대표 김성준 주소 : 경기 용인 분당수지 U타워 등록번호 : 142-07-27414
통신판매업 신고 : 제2012-용인수지-0185호 출판업 신고 : 수지구청 제 123호 개인정보보호최고책임자 : 김성준 sjkim70@stechstar.com
대표전화 : 010-4589-2193 [fax] 02-6280-1294 COPYRIGHT(C) stechstar.com ALL RIGHTS RESERVED