Python Forum
accéder à une page web ouverte - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: accéder à une page web ouverte (/thread-22655.html)



accéder à une page web ouverte - thino - Nov-21-2019

Hello I have a little problem, I developed a small data extraction application and I wanted to know how to access the content of a web page opened under Windows.
I use the splinter library https://splinter.readthedocs.io/en/latest/tutorial.html, to open the page. But before opening the desired page, it redirects me to a home page to automatically connect me and finally I lose the link to the desired page.
if anyone can help me.


RE: accéder à une page web ouverte - Larz60+ - Nov-21-2019

splinter looks very much like selenium, which is what I would use.
That being said, there is a clear example on the github page: https://github.com/cobrateam/splinter
Since you don't show your code, it's hard to tell what is going awry.