Jump to content

FF.au3 (v0.6.0.1b-15) [End of life]


Danp2
 Share

Recommended Posts

Danp2,

 

It is showing TCP 0.0.0.0:4242 [CrashplanService.exe] - this is my backup service I am using. Should I just change the port # for MozRepl? Would that solve the problem? Thanks again for all the help. This stuff is way over my computer understanding.

-Mike

Link to comment
Share on other sites

  • 1 month later...

I'm trying to get the HTML table example from http://www.w3schools.com/html/html_tables.asp into an array but can't seem to get it to work.

Here's my error:

"C:\Program Files (x86)\AutoIt3\Include\FF.au3" (2994) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.:
$aTable[$i][$j] = $aCols[$j + 1]
$aTable[$i][$j] = ^ ERROR

 

My whole code:

#include <FF.au3>
#include <array.au3>

_FFStart()
_FFOpenURL("http://www.w3schools.com/html/html_tables.asp")
_FFTabSetSelected()
_FFLoadWait()
$aTable = _FFTableWriteToArray(0)
_ArrayDisplay($aTable)

What am i doing wrong?

Edited by noobest
Link to comment
Share on other sites

  • 2 weeks later...

i have some issues with "_FFLinksGetAll()" - it read links from wrong (not currently active) tab in FF. Is there some kind of cure to this behaviour?

it mostly happen if tabs are: rearranged or opened/closed few times

Link to comment
Share on other sites

  • 1 month later...
  • 4 weeks later...

Is this UDF can control the new version of FireFox via MozRepl?

Upon installing MozRepl, I can't find how to start it, I can only "Enable" or "Disable" it, I guess there's no need to activate it on startup in the new version.

Upon debugging this code:

#Include <FF.au3>

_FFStart("http://ff-au3-example.thorsten-willert.de/")

If _FFIsConnected() Then
    Sleep(2000)
    _FFAction("presentationmode", True)
    Sleep(2000)
    _FFOpenURL("http://www.google.com")
    Sleep(2000)
    _FFAction("back")
    _FFAction("presentationmode", False)
    Sleep(2000)
    _FFOpenURL("chrome:bookmarks")
    Sleep(2000)
    _FFAction("alert", "Bye bye ...")
    _FFQuit()
EndIf

The Firefox starts with a specific URL but produce an error. This is what I'm seeing in the output:

__FFStartProcess: ""C:\Program Files (x86)\Mozilla Firefox\firefox.exe" -new-window "http://ff-au3-example.thorsten-willert.de/"  "-repl 4242 "
_FFConnect: OS: WIN_81 WIN32_NT 9600 
_FFConnect: AutoIt: 3.3.14.0
_FFConnect: FF.au3: 0.6.0.1b-15
_FFConnect: IP: 127.0.0.1
_FFConnect: Port:   4242
_FFConnect: Delay:  2ms
_FFConnect ==> Timeout: TCPConnect Error: 10060
_FFConnect ==> General Error: Timeout: Can not connect to FireFox/MozRepl on: 127.0.0.1:4242
_FFIsConnected ==> Socket Error: -1

Upon testing the command "telnet" in the command shell of my operating system while my Firefox is still open, this is what I'm seeing:

'telnet' is not recognized as an internal or external command, operable program or batch file.

I'm using Windows 8.1, do I also need to turn on the Telnet Client under Windows Features to be able to control the browser via MozRepl, which means my clients also need to install the MozRepl and turn on the Telnet Client when they use the executable Firefox automation files that I'll going to compile? This looks hassle for my clients..

Edited by 5ervant
Link to comment
Share on other sites

Is this UDF can control the new version of FireFox via MozRepl?

Upon installing MozRepl, I can't find how to start it, I can only "Enable" or "Disable" it, I guess there's no need to activate it on startup in the new version.

Look under the Tools > MozRepl submenu. There are options there to start / stop the service and also an Activate on Startup option.

Link to comment
Share on other sites

Look under the Tools > MozRepl submenu. There are options there to start / stop the service and also an Activate on Startup option.

There's no "Tools" menu in my updated Firefox.

Are you using the latest version? If you are, can you show me a screenshot?

Link to comment
Share on other sites

  • 1 month later...

Can I use AutoIT with mozrepl in RDP environment (multiple users in the same time)? Mozrepl uses TCP port, should I set up other ports for every user? If MozRepl is installed on each user and I'm trying to connect via AutoIT UDF FF on some users i get error with timeout.

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...