Ajay Nair
Ajay Nair

Reputation: 1867

Simulate browser and control programmatically

I am trying to run a headless browser, to which when I pass a URL simulates the entire webpage as it would if run from any of the popular browser. Importantly it must manage to run Adobe Flash Player (and hence flash videos). I have heard things about selenium webkit but I am not sure about its capabilities as I have never used it especially when it comes to handling flash content. Infact if I were to narrow down the problem, I just want to run a flash content in a web site but out of the internet browsing window under my program (preferably python). If this is possible can someone point me the right approach. Do let me know if any further clarification is needed in the question.

Upvotes: 0

Views: 1251

Answers (1)

coulix
coulix

Reputation: 3368

Give a try to http://phantomjs.org/ it works great with a headless webkit and flash. You could look at http://jeanphix.me/Ghost.py/ to control phantomjs with Python.

Upvotes: 1

Related Questions