Trebia Project.
Trebia Project.

Reputation: 940

Python: opening web browser and returning back to application

The basic use case I want to do is opening a web page from python, after which the user will perform some work on the web page (while python waits), and then the web page will return some info (essentially redirecting to another URL), and python will be able to capture the new web page - and continue executing.

After googling, I have not been able to find a way to do it. Essentially all examples are assuming I am working in batch and I do not need to perform any operation in the background. Does anybody have a hint for me?

Upvotes: 0

Views: 57

Answers (1)

Himanshu dua
Himanshu dua

Reputation: 2523

Use Selenium with Python.You can also choose the browser with help of web drivers. Refer more on http://selenium-python.readthedocs.io/

Upvotes: 1

Related Questions