반응형
C# -- IE automation #7 -- iframe 접근하기
환경 : windows 7 64bit, visual studio 2013 community
참고 : http://stackoverflow.com/a/14661214 --> CrossFrameIE class
http://stackoverflow.com/a/19275241 --> setting [STAThread]
1, iframe 내부 접근시, InvalidCastException 발생.
Main() 함수를 [STAThread] 로 지정하면, InvalidCastException 문제 해결됨.
but, 새로운 예외 UnauthorizedAccessException 발생함.
** UnauthorizedAccessException 해결위해 , stackoverflow 검색하여 CrossFrameIE class 사용함.
<< 완성 소스 >>
반응형
'C# Web Scraping' 카테고리의 다른 글
C# -- HTML Agility Pack 사용한 html 파싱 (1) | 2016.03.24 |
---|---|
C# -- IE automation #6 -- 구글 검색창 제어하기 (0) | 2016.02.09 |
C# -- IE automation #5 -- Attribute 제어하기 (0) | 2016.02.09 |
C# -- IE automation #4 -- html 구조 파헤치기 (0) | 2016.02.09 |
C# -- IE automation #3 -- internet explorer 제어하여 html 소스 가져오기 (4) | 2016.02.03 |