我需要从网格表中的特定行和列中提取数据,该网格表位于windows应用程序中,可以在任何位置使用自动化。如何从表的特定行和列中提取数据。
如果您可以附上当前代码的任何样本和您正在讨论的表,您的问题会更清楚。
在使用对象克隆、捕获表之后,您可以尝试以下任何方法
1 **Comment: //Extract complete table to CSV**
2 Object Cloning: Get Table(Extract Table) "" to csv and store at "Test.csv" from window 'Stocks - Bloomberg - Internet Explorer'; Source: Window; Play Type: Object
3 **Comment: //Get cell by Index**
4 Object Cloning: Get Cell Text By Index of Table "" where row:"1" column:"1" from window 'Stocks - Bloomberg - Internet Explorer'; Assign to variable "$Prompt-Assignment$"; Source: Window; Play Type:Object
5 **Comment: //Get cell by Text**
6 Object Cloning: Get Cell Index By Text of Table "" where Text:"hello" from window 'Stocks - Bloomberg - Internet Explorer'; Assign to variable "$Prompt-Assignment$"; Source: Window; Play Type:Object