user63503
user63503

Reputation: 6493

How to use storeHtmlSource in python code (Selenium RC)

I found storeHtmlSource method description in Selenium reference, but can't figure out how to use it in python code I generated by exporting recording of my actions from the Selenium IDE.

I need to pass the html source code of the current page into a function for processing. How to do that? Can anyone show example of code for calling this method? Could it at all to be called from python?

Upvotes: 0

Views: 1447

Answers (1)

Patrick Lightbody
Patrick Lightbody

Reputation: 4534

I can't speak for Python, but check out the getHtmlSource method for the Java API of the Selenium interface. It explains what it does pretty clearly.

Upvotes: 1

Related Questions