Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
rohit kumar gupta
Active particpant
Active particpant
Posts : 24
Join date : 2012-09-19
Age : 34
Location : abc

Handling-WebTable Empty Handling-WebTable

Sun Oct 21, 2012 6:11 pm
Hi I want to access a webtable and its elements based on row and column.
Can anyone post a piece of code handling webtables.
avatar
anemuday
Active particpant
Active particpant
Posts : 11
Join date : 2012-10-11

Handling-WebTable Empty Re: Handling-WebTable

Mon Oct 22, 2012 6:08 pm
I just followed this appraoch:

Code:
int rownum,colnum;
String s_xpath;



WebDriver driver=new FirefoxDriver();
driver.get("[url=https://www.irctc.co.in/]https://www.irctc.co.in/[/url]");
 
rownum=2;
colnum=1;
 
s_xpath="//*[@id='tabslinks']/tbody/tr["+rownum+"]/td["+colnum+"]";
System.out.println(driver.findElement(By.xpath(s_xpath)).getText());
avatar
rohit kumar gupta
Active particpant
Active particpant
Posts : 24
Join date : 2012-09-19
Age : 34
Location : abc

Handling-WebTable Empty Re: Handling-WebTable

Sun Oct 28, 2012 4:58 pm
Hi anemuday:--

In the statement below:

s_xpath="//*[@id='tabslinks']/tbody/tr["+ rownum +"]/td[" + colnum +"]";

How do we determine the unique attribute of table? in this case 'id' of the table..

Thanks in advance...Smile
Sponsored content

Handling-WebTable Empty Re: Handling-WebTable

Back to top
Permissions in this forum:
You cannot reply to topics in this forum