NunoF
NunoF

Reputation: 79

I can not access some html code of a page

I’m trying to make web scraping in a web page, but there is code that I can’t reach. The part of the code of the page that I cannot achieve is accessed through an anchor tag. In the html is:

<a class="MTLink" href="#d192633539-47" title="example" > 

But when I click on "#d192633539-47" does not appear what is intended, ie not appear that appears when I click on the link on the page. Instead appears another page. Related to this I have also

<li id="d192633539-47" class="MainTabContent Hidden" tnIndex="192633539">

Someone can help me? What could be happening?

Upvotes: 2

Views: 175

Answers (2)

modzello86
modzello86

Reputation: 433

There might be a problem with wrong cookie handling. Check it out.

Upvotes: 0

Diodeus - James MacFarlane
Diodeus - James MacFarlane

Reputation: 114417

This element is controlled by JavaScript. Without tracing the JS code you cannot determine the intention of the click event.

Upvotes: 2

Related Questions