I need to dump the contents (text only) of a webpage every 1 minute to a text file (append it all to one text file) The webpage is a web log which is updated on the fly automatically. Could I use a short python script to accomplish this simple copy/paste automation?Or do you know of any ready made program that does the same?
I have checked the answers to this: Python: saving large web page to file and this: Dumping a dynamic web page to file? But I am new to python so I cannot build my script on the info provided
It seems that this may be a solution: https://www.seleniumhq.org/projects/webdriver/
But could you give me a small working example