the source html of the page i am trying to scrape
Iam trying to scrape a webtable that is rendered using certain javascripts using Selenium Webdriver
driver.get("http://xxxxx:xxxxxxxx@xxxxxx-
xxxxxx.grid.xxxxxx.com/Windchill/app/#ptc1/comp/queue.table");
driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS);
List<WebElement> k=driver.findElements(By.xpath("//*[@id='queue.table']"));
System.out.println(k.size());
System.out.println(k.get(0).getText());
k.size() returns 1 and when i run get text it returns only some entries from the table
Actual table and entries the total rows are 135
after running i get as follows
Queue Management
Loading...
Name
Type
Status
Enabled
Group
Total Entries
Waiting Entries
Severe/Failed Entries
DeleteCompletedWorkItemsQueu e
Process
Started
Enabled
Default
0
0
0
DeliveryStatusOnStartup
Process
Started
Enabled
Default
0
0
0
DTODeliverablesQueue
Process
Started
Enabled
Default
0
0
0
DTOOffPeakQueue
Process
Started
Enabled
Default
0
0
0
Loading.........
I get 25 entries of the table and rest is not present I am unable to understand why am i getting "Loading....."