0w0

[selenium] iframe....... 본문

Coding/Python

[selenium] iframe.......

0w0 2019. 8. 10. 04:02
728x90
반응형

 

#제목 subject 작성
bs_driver.find_element_by_class_name('textarea_tit').send_keys('글적글적')

###iframe!!!
#첫번째 iframe 정보를 가져옴.(내용 작성부분 POST는 첫번째 iframe 이기 때문임)
iframe=bs_driver.find_elements_by_css_selector('iframe')[0]

#iframe 구성으로 전환
bs_driver.switch_to_frame(iframe) 



#내용 POST 작성
bs_driver.find_element_by_id('tinymce').send_keys('test input')

bs_driver.find_element_by_xpath("""//*[@id="tinymce"]""").send_keys('\ntest input2')
###iframe!!!!



#기본 구성으로 전환

bs_driver.switch_to_default_content()

 

728x90
반응형
Comments