Tim,
Brilliant, I now have an issue that now I am presented with box that has a
URL which is security protected so that I cannot view the source code. Ican
see checkboxes which have text next to them and a button which simply says OK
next to it. I can check these manually but it would save me an awful lotof
time if I could automate it. Am I now at a dead end?
--
jason36
Tim Williams said:
try
watch out for wrapping there.
Untested: might be ....getElementsByTagName("A")(1).click
jason36 said:
Tim, This is not the only edit link, the source code has this edit by the
id :
<span id="Priority_Desc">All</span>. Is there a way to For Next tofind
that specific id?
Many Thanks
--
jason36
:
If this is the only link on the page with the text "Edit":
dim lnk
for each lnk in IE.document.links
if lnk.innerText="Edit" then
lnk.click
exit for
end if
next l
No idea for the next part without having the source code for the
checkboxes.
Tim
I am now trying to Edit a filter called 'Priority' which is referenced
in
the
source code as :
<td>Priority: </td><td><span id="Priority_Desc">All</span> <a
href="javascript:editFilter('[Priority]');">Edit</a></td>
and then place a tick in the second Check Box displayed.
Help would be very much appreciated
- Show quoted text -