Hi,
We are testing one of your great product EO Webbrowser to automate a few things
I am a total novice in terms of web development, so if your reply include those technologies, I would really appreciate your patience.
Here is the scenario.
Website we're trying to automate is developed in ASP.Net
Step 1) Visit the search page. -- (Done)
Step 2) Fill fields with data and click a button to submit search. -- (Done)
Search result page probably has repeater for search result data
Step 3) Parse search result from the repeater (HTML Table) -- (Done)
Now the issue:
Each row in search result has a link that says Show Details ( basically <a> tag ), when we click the link it updates a panel (basically a <span> tag) asynchronously ( probably ajax/some asp.net update panel ) with more data.
<a> tag e.g.
Code: HTML/ASPX
<a id="ContentPlaceHolder1_MGVSearchResult_LnkShowDetails_0" class="LnkshowDetails" href="javascript:__doPostBack('ctl00$ContentPlaceHolder1$MGVSearchResult$ctl02$LnkShowDetails','')">Show Details</a>
I can do the clicking but how do get to know that the that panel is updated with the data?
I have tried many events e.g. BeforeNavigate, ScriptCall done etc. but none of them helped.
Regards,
DA