java - Is there any way to copy contents in Internet explorer window to Jframe application window? -
i creating 1 small executable application using java , jframe automation project. want copy particular content website(which opened in internet explorer) clicking button in jframe application?
i recommend selenium , jsoup. selenium has code allow connect browser java(or other languages). there little bit of setup work going. http://www.seleniumhq.org/download/ shows there internet explorer driver. use chrome , today had update chromedriver because stopped working. there code in selenium clicking buttons, identifying resources, , getting web page source.
you can combine selenium jsoup. jsoup familiar getting large sections of html out of web page. before knew selenium, used jsoup download page's source code , parse it. https://jsoup.org/
happy automating.
Comments
Post a Comment