Jump to content

Javascript Click Link


Go to solution Solved by sagarphirke,

Recommended Posts

Hi;

I want to click a lick which is generated dynamically by a javascript.

The Firefoxbug shows below details which I think is a link for Click :-

 

<td onclick="javascript:__doPostBack('ctl00$ContentBodyPlaceHolder$SearchResultsPanel$ctl00$DataGridCustomers$ctl03','cellclick')">
<span class="xpr-control">
<span id="ctl00_ContentBodyPlaceHolder_SearchResultsPanel_ctl00_DataGridCustomers_ctl03_CustomerId" class="xpr-label Label">ABC104950</span>
</span>
 
 
Any suggestions how to click the link which shows ID ABC104950.
Link to comment
Share on other sites

a screenshot would be nice - it will help us understand the context of things, because there may be an easier way of accomplish your goal. anyway i'd guess the link position is roughly the same on the browser window, each time it is created. if it is the same position, or a limited set of optional positions, then disregard the code information and use the coordinates for MouseClick().

Signature - my forum contributions:

Spoiler

UDF:

LFN - support for long file names (over 260 characters)

InputImpose - impose valid characters in an input control

TimeConvert - convert UTC to/from local time and/or reformat the string representation

AMF - accept multiple files from Windows Explorer context menu

DateDuration -  literal description of the difference between given dates

Apps:

Touch - set the "modified" timestamp of a file to current time

Show For Files - tray menu to show/hide files extensions, hidden & system files, and selection checkboxes

SPDiff - Single-Pane Text Diff

 

Link to comment
Share on other sites

$oSpan = _IEGetObjById($oIE, "ctl00_ContentBodyPlaceHolder_SearchResultsPanel_ctl00_DataGridCustomers_ctl03_CustomerId")
_IEAction($oSpan, "click")

 

If the above doesn't work, you'll need to get an object reference to the specific TD and then click on it in the same way.

Dale

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

Link to comment
Share on other sites

  • 4 weeks later...
  • Solution
$oSpan = _IEGetObjById($oIE, "ctl00_ContentBodyPlaceHolder_SearchResultsPanel_ctl00_DataGridCustomers_ctl03_CustomerId")
_IEAction($oSpan, "click")

If the above doesn't work, you'll need to get an object reference to the specific TD and then click on it in the same way.

Dale

It worked buddy....

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...