使用 Firefox 和 Python 中的 Mozrepl 插件,我可以:
>>> import telnetlib
>>> tn = telnetlib.Telnet(r'127.0.0.1', 4242, 5)
>>> tn.read_eager()
'\nWelcome to MozRepl.\n\n - If you get stuck at the "'
>>> tn.read_until("repl> ")
...snip...
>>> tn.write(r'alert(window.content.location.href)'+"\n")
我收到一个带有活动选项卡 URL 的警报框。但是如何将该 URL 读入 python 变量?类似的东西,tn.write(r';var zz = window.content.location.href'+ "\n")
但这并没有让它进入python。
我将不胜感激。