- useroforacle
- Posts : 1
Join date : 2010-08-31
getXpathCount returning 0
Tue Aug 31, 2010 4:24 pm
This is my code for finding the row count of a table in a pop up window..I check if the table exists in the pop up window, and it returns me true as well as if a fetch a cell value from the table, then also i am getting a value..but when it try to fetch the row count or column count of the table, it returns value as 0..
What could be the problem..the table exists..but not able to fetch the rowcount..
for (int second = 0;; second++) {
if (second >= 90) fail("timeout");
try { if (selenium.isElementPresent("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/tr[2]/td[2]")){
System.out.println("element present");
String tesstt = selenium.getText("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/tr[2]/td[4]");
System.out.println("tesstt value==>"+tesstt);
if (selenium.isElementPresent("popupFrame"))
{
selenium.selectFrame("popupFrame");
System.out.println("Pop up frame selected");
http://Thread.sleep(15000);
int rowCount=selenium.getXpathCount("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/tr").intValue();
System.out.println("rowCount===="+rowCount);}
else
System.out.println("Pop up frame not found");
break; }
}
catch (Exception e) {
System.out.println("Exception: element not present");
}
Thread.sleep(1000);
}
What could be the problem..the table exists..but not able to fetch the rowcount..
for (int second = 0;; second++) {
if (second >= 90) fail("timeout");
try { if (selenium.isElementPresent("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/tr[2]/td[2]")){
System.out.println("element present");
String tesstt = selenium.getText("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/tr[2]/td[4]");
System.out.println("tesstt value==>"+tesstt);
if (selenium.isElementPresent("popupFrame"))
{
selenium.selectFrame("popupFrame");
System.out.println("Pop up frame selected");
http://Thread.sleep(15000);
int rowCount=selenium.getXpathCount("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/tr").intValue();
System.out.println("rowCount===="+rowCount);}
else
System.out.println("Pop up frame not found");
break; }
}
catch (Exception e) {
System.out.println("Exception: element not present");
}
Thread.sleep(1000);
}
- freeskyAmateur
- Posts : 72
Join date : 2011-04-13
Re: getXpathCount returning 0
Thu Aug 11, 2011 10:54 am
add Thread.sleep() before getXpathCount
- mgharikrishnanActive particpant
- Posts : 10
Join date : 2011-06-20
Re: getXpathCount returning 0
Thu Aug 11, 2011 9:06 pm
Hi,
Try to something like this,
int rowCount = (Integer)selenium.getXpathCount("//table[@id='active-reg']/tbody/tr");
System.out.println("rowCount = "+rowCount);
~ Harri...
Try to something like this,
int rowCount = (Integer)selenium.getXpathCount("//table[@id='active-reg']/tbody/tr");
System.out.println("rowCount = "+rowCount);
~ Harri...
- ashish_techieAmateur
- Posts : 73
Join date : 2011-08-09
Smart solution for Webtables
Wed Aug 17, 2011 12:39 am
You can use following code
int rowcount=0
while(selenium.iselementPresent("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/true](rowcount+1)+"])){
rowcount++;
}
System.out.println("Total rows -- "+rowcount);
Regards
Ashish
For selenium training visit:
qtpselenium.com/samplevideos/selenium/seleniumvideos.php
int rowcount=0
while(selenium.iselementPresent("//html/body/form/div/table/tbody/tr[4]/td/div/div/div/table/tbody/true](rowcount+1)+"])){
rowcount++;
}
System.out.println("Total rows -- "+rowcount);
Regards
Ashish
For selenium training visit:
qtpselenium.com/samplevideos/selenium/seleniumvideos.php
Permissions in this forum:
You cannot reply to topics in this forum