Posts: 16
Threads: 5
Joined: Oct 2011
Reputation:
0
12-13-2012, 05:20 PM
I am using descriptive programming to fetch the table data in our application. The table is developed using slickgrid jquery. If there are 60 rows of data displayed in the table, in my machine I am getting only 20 rows of data when the code is executed. However, when the same code is executed on another machine (monitor having larger screen area), all data are retrieved. Does DP depend on the monitor size?
Posts: 16
Threads: 5
Joined: Oct 2011
Reputation:
0
12-24-2012, 09:22 AM
Can anyone help me out with the above issue?
Posts: 41
Threads: 6
Joined: Jun 2011
Reputation:
0
12-31-2012, 05:35 PM
Yes, obviously. If certain objects are not visible completely DP will not retrun complete data. For this you should use workarounds. Like scorlling,expanding, regular expression. After this you can fetch complete data. Hope this will address your issue.
Posts: 16
Threads: 5
Joined: Oct 2011
Reputation:
0
01-10-2013, 09:44 AM
I have tried by implementing scrolling. But the row data being fetched are getting duplicated as the screen is scrolled down. It is picking up a block of the same rows of data which was already fetched before. I am not getting the desired output.
Another question is how to implement "expanding, regular expression" to resolve this issue?
Posts: 16
Threads: 5
Joined: Oct 2011
Reputation:
0
01-17-2013, 02:20 PM
The problem is that there is no WebTable object. The table that is displayed on the screen is developed using slickgrid query. Though the look and feel of the table is that of a WebTable. Each of the table contents are identified as a WebElement.
Using DP the number of columns are retrieved correctly. But while retrieving the number of rows, the actual value is not retrieved. Only the rows that are currently visible on the monitor screen is picked up using DP.
Posts: 1
Threads: 0
Joined: Oct 2013
Reputation:
0
10-02-2013, 12:05 PM
I am only able to identify the slick grid as an object. How to identify the rows and columns and the fields in it.