![]() |
trailing "...." in links - Printable Version +- WebPagetest Forums (https://www.webpagetest.org/forums) +-- Forum: WebPagetest (/forumdisplay.php?fid=7) +--- Forum: Bugs/Issues (/forumdisplay.php?fid=10) +--- Thread: trailing "...." in links (/showthread.php?tid=891) |
trailing "...." in links - niallmur - 06-30-2011 07:50 PM Has anyone else had problems clicking links where the title, name, innerText all have tailing dots after the text. ex: title=person... <a class="curam-content-pane-single-link" title="Person…" onclick="curam.ui.SectionShortcutsPanel.handleClickOnAnchorElement("Person_search1",""); return false; " href="#">Person…</a> i would be very grateful for any suggestions how you got round this problem thanks Niall RE: trailing "...." in links - pmeenan - 07-01-2011 12:45 AM is this using a script? If so you could just use the execAndWait command instead and have it execute the onClick javascript directly. RE: trailing "...." in links - niallmur - 07-01-2011 06:04 PM thanks Pat, that worked! i had tried various execAndWait commands with no luck. Here is the full command i used. For anyone else who may wonder how to use it. execAndWait onclick=curam.ui.SectionShortcutsPanel.handleClickOnAnchorElement("Person_search1",""); Niall |