Стоит следующая задача... возможно ли вообще такое? Нужно отслеживать IE и при открытии вкладки "Список" выбрать из
все ссылки типа "/server/documentview/default.aspx?num=40404040", "/server/documentview/default.aspx?num=20202020" и т.д.
вывести сообщение с количеством найденных ссылок, и после последовательно по очереди открыть ссылку www.base + "/server/documentview/default.aspx?num=40404040" нажать на сылку "печать" на странице
вернуться, открыть следующую ссылку и так далее...
Ссылку на сайт не могу дать, т.к. он находится в закрытой локальной сети.
Код:
</tr><tr class="BodyCell" align="center" style="font-family:Verdana;font-size:10pt;Color:Black;">
<td><a title="Просмотр" href="/server/documentview/default.aspx?num=10101010">10101010<a></td><td>000</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">Сумма</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 555.55</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 0.00</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;">Сумма</td><td style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">10.10.2012 10:10:10</td>
</tr><tr class="BodyCell" align="center" style="font-family:Verdana;font-size:10pt;Color:Black;">
<td><a title="Просмотр" href="/server/documentview/default.aspx?num=20202020">20202020<a></td><td>001</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">Сумма</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 555.55</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 0.00</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;">Сумма</td><td style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">10.10.2012 11:11:11</td>
</tr><tr class="BodyCell" align="center" style="font-family:Verdana;font-size:10pt;Color:Black;">
<td><a title="Просмотр" href="/server/documentview/default.aspx?num=30303030">30303030<a></td><td>001</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">Сумма</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 555.55</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 0.00</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;">Сумма</td><td style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">10.10.2012 15:15:15</td>
</tr><tr class="BodyCell" align="center" style="font-family:Verdana;font-size:10pt;Color:Black;">
<td><a title="Просмотр" href="/server/documentview/default.aspx?num=40404040">40404040<a></td><td>000</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">Сумма</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 555.55</td><td align="right" style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;"> 0.00</td><td align="left" style="font-weight:normal;font-style:normal;text-decoration:none;">Сумма</td><td style="font-weight:normal;font-style:normal;text-decoration:none;white-space:nowrap;">10.10.2012 15:15:15</td>
все ссылки типа "/server/documentview/default.aspx?num=40404040", "/server/documentview/default.aspx?num=20202020" и т.д.
вывести сообщение с количеством найденных ссылок, и после последовательно по очереди открыть ссылку www.base + "/server/documentview/default.aspx?num=40404040" нажать на сылку "печать" на странице
Код:
<a onclick="getTicketFile('10101010');return false;" id="PrintFile" tabindex="5" href="javascript:__doPrintBack('printFile','')" style="color:Black;background-color:WhiteSmoke;font-weight:normal;">печать</a>
</td>
Ссылку на сайт не могу дать, т.к. он находится в закрытой локальной сети.