Jump to content

FireFox automation


C2A
 Share

Recommended Posts

hi

A web page is opened in firefox, and i can see it.

There are many options, web buttons and a text input field.

How do i Find the text field, paste text from clipboard and press a submit button?

just need the ideas how it all can work...

Link to comment
Share on other sites

Hello C2A,

I can't always get what I want from the searches, I think it only works with single words. All the info is there, you are searching the example forum, not general help?

There are a couple of things can cause problems getting going with FF.au3. I think FireFox 3.6 is the highest version that is compatible. Install Mozrepl, check it works with telnet, adjust socket number if necessary (my work PCs needed this, I've posted details of how to do this at least twice.)

Having done all that, it's very good and some websites are easy to automate. This code is the autologin script for my local library. The idents for the web-page items came from using FireBug. I've removed the lines that extract usern+pwd from encrypted location.

I find other things harder, maybe because I'm not a html/web-page expert.

Hope this helps,

Richard.

#include <FF.au3>
$url = "https://viewpoint.westsussex.gov.uk/00_002_login.aspx"

_FFAu3Option("ComTrace", False)
If _FFStart("about:blank","",1) >= 1 Then
    _FFOpenURL($url,1)
    Sleep(100)

    $ans = "LibraryCard"
    $id = "ctl00_ContentPlaceCenterContent_login2_username"
    _FFSetValue($ans, $id, "id")

    $ans = "0000"
    $id = "ctl00_ContentPlaceCenterContent_login2_password"
    _FFSetValue($ans, $id, "id")
    ;
    ; Login
    ;_FFClick("ctl00_ContentPlaceCenterContent_login2_LoginButton", "id", 3, 1)
EndIf

Exit
Link to comment
Share on other sites

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...