방금 비슷한 일을하고있었습니다. 나는 임시 텍스트 파일 로이 작업을 수행합니다. 클립 보드를 사용하지만 "소스"를보기 위해 페이지 자체를 열지 않습니다.
방법은 다음과 같습니다.
clipboard := ; clear the clipboard
send {F6} ; select url of current page
sleep 50 ; not mandatory -- 50ms
send ^{c}
clipwait, 2
sleep 50
URL=%clipboard% ; extra step, placing clip into var
send {F6} ; release url in url bar.
UrlDownloadToFile %URL%, file.tmp ; Where tile.tmp is local to your AHK
; There is now a file to read from
FileRead, var_text, file.tmp ; There is now a variable to read text
; places all text from page into var