I am using selenium rc and exetuing
selenium.getText("//div/div[2][contains(@id,'gp-PACKAGE NAME-')]/div["+i+"]/table/tbody/tr/td["+1+"]/div")
I have to execute this command for 20-30 rows for which it takes 20-30 mins. I would like to get dom object for the table and parse it using java rather than executing selenium.getText
for each row.
My expectation is that, I get dom object for all the rows from selenium and perform xpath query outside selenium using some dom parser.