Jump to content

Trying to use FF.au3 to extract some information from a table


danielzy
 Share

Recommended Posts

Hey guys, I'm pretty new to autoit and I'm trying to use FF.au3 to extract some cells from a table which looks like that:

 

<table border="0" cellspacing="5" cellpadding="1">
        <tr>
            <td class="BlueInputKind" align="left" nowrap>HEADING1</td>
            <td  class="BlueInputKind" nowrap>HEADING2</td>
            <td class="BlueInputKind" nowrap>HEADING3</td>
            <td class="BlueInputKind" nowrap>HEADING4</td>
        </tr>
        <tr>
            <td class="BlackTextEng" dir="ltr">Text1</td>
            <td class="BlackTextCenter" valign="top"  dir="rtl">Number</td>
            <td nowrap class="BlackText" valign="top" nowrap>Text3</td>
        </tr>
        <tr>
            <td class="BlackTextEng" dir="ltr">Text1</td>
            <td class="BlackTextCenter" valign="top"  dir="rtl">Number</td>
            <td nowrap class="BlackText" valign="top" nowrap>Text3</td>
        </tr>
        <tr>
            <td class="BlackTextEng" dir="ltr">Text1</td>
            <td class="BlackTextCenter" valign="top"  dir="rtl">Number</td>
            <td nowrap class="BlackText" valign="top" nowrap>Text3</td>
        </tr>

My end goal is to:

If Text1 == something && Number > SomeNumber Then DoSomething

I managed to connect to firefox using repl and clicked some links etc but I'm not even close to achieving something like the above. Any help will be appreciated.

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

×
×
  • Create New...