Jump to content

Class name(HTML)


Recommended Posts

Lets say I have a web page with this code

<div id="div1" class="divclass">

<ul id="ulid">

<li id="id1" class="class">

<div class="divclass2"></div>

<a href="...." title="title"><span class="textLabel">Some text</span></a>

</li>

</ul>

</div>

I need to obtain the highlighted words values(whats the class of the <li>, the title of the <a> tag and the text). I know that the underlined words wont change.

Link to comment
Share on other sites

Lets say I have a web page with this code

<div id="div1" class="divclass">

<ul id="ulid">

<li id="id1" class="class">

<div class="divclass2"></div>

<a href="...." title="title"><span class="textLabel">Some text</span></a>

</li>

</ul>

</div>

I need to obtain the highlighted words values(whats the class of the <li>, the title of the <a> tag and the text). I know that the underlined words wont change.

Use the IE.au3 UDF, which is all the _IE* functions in the help file. Get references to the object, for example with _IEGetObjById(), and then access the properties directly, like with $oObj.ClassName.

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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...