I tried the Pamie browser automation library for an Internet explorer. It interacts with IE using COM, pretty neatly:
import PAM30
ie = PAM30.PAMIE("http://user-agent-string.info/")
ie.clickButton("Analyze my UA")
Now I would like to do the same using PyXPCOM with similar flexibility in Firefox. How can i do this? Can you provide some sample code?
update: please only pyxpcom
source
share