ysping 发表于 2016-8-11 08:32:04

autoit for firefox问题(已解决)

本帖最后由 ysping 于 2016-8-11 13:18 编辑

firefox已安装了MozRepl插件,firefox已启动,但是测试以下代码,弹出:"Can't connect to FireFox!",无法连接到firefox。
#Include <FF.au3>

; trying to connect to a running FireFox with MozRepl on

If _FFConnect(Default, Default, 3000) Then
; open a page

_FFOpenURL("http://ff-au3-example.thorsten-willert.de/")
Sleep(3000)
; disconnect from FireFox

If _FFDisConnect() Then MsgBox(64, "", "Disconnected from FireFox!")
Else
MsgBox(64, "", "Can't connect to FireFox!")
EndIf

ysping 发表于 2016-8-11 08:40:32

有个贴在里看到需要这样:
启动firefox,点击工具->MozRepl->Active on startup 进行设置

我的firefox里已经启用这个插件了:

文档说这个插件默认的端口是4242,我netstat -an却并没找到4242端口。如何检查这个插件目前使用的端口?

ysping 发表于 2016-8-11 08:46:29

我用的firefox版本是43.0.1,MozRepl版本是1.1.2.1

ysping 发表于 2016-8-11 10:53:04

应该是MozRepl插件没有启动成功,用命令行启动后可以看到有4242端口。但是firefox关闭后重启firefox不能自动启动MozRepl插件!

ysping 发表于 2016-8-11 11:17:25

搞定了{:face (88):}

ysping 发表于 2016-8-11 13:11:43

本帖最后由 ysping 于 2016-8-11 13:46 编辑

请问,以下基于IE的代码,如何改写成基于firefox的代码?
#include <C:\Program Files (x86)\AutoIt3\include\IE.au3>
$oIE = _IECreate ("https://*.*.*.*")
sleep(5000)
$oDiv = _IEGetObjById ($oIE, "overridelink")
_IEAction($oDiv ,"click")
sleep(5000)
$oForm = _IEFormGetObjByName ($oIE, "form1")
$oQuery = _IEFormElementGetObjByName ($oForm, "username")
_IEFormElementSetValue ($oQuery, "user1")
$oQuery = _IEFormElementGetObjByName ($oForm, "password")
_IEFormElementSetValue ($oQuery, "pass1")
$oQuery = _IEFormElementGetObjByName ($oForm, "button")
_IEAction($oQuery ,"click")
sleep(3000)
_IEAction ($oIE, "quit")
页: [1]
查看完整版本: autoit for firefox问题(已解决)