Hello All,
I have a web screen as shown in the image.
Company name is given by user in “input box”(dynamic), based on which I need to click on the respective download button.
For example, if company name is “winspire” I need to click on respective download button as shown in the image,
If the company name is like “jocata” I need to click on respective download button.
I may have number of companies in the given table.
Could somebody pls help me on this.
How to click on download button of respective company which changes all the time.
Regards,
Gangadhar K.
rado
September 9, 2019, 11:06am
2
@gangadharkasturi
Hi,
Basicaly you could found what row of that table has company name, and click button on that row.
Or you can just use anchor based on text to click that button.
Could you please help me to find out the specific row with ‘company name’ and to click on download button?
rado
September 9, 2019, 11:25am
4
@gangadharkasturi
Please share with us how selectors of the Company name and buton look like.
<tbody><tr>
<td>JOCATA FINANCIAL ADVISORY & TECHNOLOGYSERVICES PRIVATE LIMITED</td>
<td align="center">ALL</td>
<td>15:55 | 09-09-2019</td>
<td class="download">
<a class="dashboardlinks" onclick="javascript: showDocCategories('0')">
<span>
<img src="./Ministry Of Corporate Affairs - MCA Services_files/download.png" width="20" height="13" alt="download">
</span>
Download
</a>
<input type="hidden" id="companyID0" value="U67110TG2010PTC071247">
<input type="hidden" id="companyName0" value="JOCATA FINANCIAL ADVISORY & TECHNOLOGYSERVICES PRIVATE LIMITED">
<input type="hidden" id="startDateTime0" value="12:55 | 09-09-2019">
<input type="hidden" id="srn0" value="U51925543">
</td>
</tr>
<tr>
<td>WINSPIRE SOLUTIONS PRIVATE LIMITED</td>
<td align="center">ALL</td>
<td>13:08 | 16-09-2019</td>
<td class="download">
<a class="dashboardlinks" onclick="javascript: showDocCategories('1')">
<span>
<img src="./Ministry Of Corporate Affairs - MCA Services_files/download.png" width="20" height="13" alt="download">
</span>
Download
</a>
<input type="hidden" id="companyID1" value="U72200PN2000PTC133892">
<input type="hidden" id="companyName1" value="WINSPIRE SOLUTIONS PRIVATE LIMITED">
<input type="hidden" id="startDateTime1" value="0">
<input type="hidden" id="srn1" value="U51927176">
</td>
</tr>
</tbody>
rado
September 9, 2019, 11:37am
8
Could not find a proper way still. Not able to go forward with AnchorBase Activity.
Please help me out.
rado
September 10, 2019, 9:21am
10
Ok, use UiExploler to read selectors of Button and Company name which are in the same row and share them with us.