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
Bhuvaneswari
Regular Participant
Regular Participant
Posts : 30
Join date : 2011-09-30
Location : India

Multiple choice selection using RC Empty Multiple choice selection using RC

Mon Jan 16, 2012 12:00 pm
Hello,

I have a table with number of columns. First column has check boxes for each row, second column has the name of the item(unique). I wanted to select/deselect the check box by pointing to the name of the item where the items name can be static as well as dynamic. Assume I know the name of the item. Please let me know how to achieve this ?
Thanks
avatar
faramka
Professional
Professional
Posts : 143
Join date : 2011-09-15
Location : Poland

Multiple choice selection using RC Empty Re: Multiple choice selection using RC

Mon Jan 16, 2012 2:57 pm
I have got a solution for this issue.
You searching all items in the table in 'for' loop and find the item which you want to select. You can use 'if' statement. When you find the item, you will have a row number and could select / unselect checkbox.

Code:
for ($i = 1; $i <= $this->getXpathCount("//table/tbody/tr"); $i++) {
    if ($this->getText("//table/tbody/tr[$i]/td[2]") == $nameOfItemYouWantToSelect) {
        $this->click("//table/tbody/tr[$i]/td[1]/input[@type='checkbox']");
    }
}
avatar
Bhuvaneswari
Regular Participant
Regular Participant
Posts : 30
Join date : 2011-09-30
Location : India

Multiple choice selection using RC Empty Re: Multiple choice selection using RC

Wed Jan 25, 2012 5:32 pm
Thanks. Was sometime into Web Driver and today I tried this solution you gave. I am not able to find the element using this XPATH. I tried both with absolute as well as relative path but failed to identify the text associated with it.

Any idea on this kind of problem ?
avatar
faramka
Professional
Professional
Posts : 143
Join date : 2011-09-15
Location : Poland

Multiple choice selection using RC Empty Re: Multiple choice selection using RC

Wed Jan 25, 2012 5:37 pm
Message reputation : 100% (1 vote)
Did you try with the other xPath? You can check it using xPath Checker (Firefox plugin).
avatar
Bhuvaneswari
Regular Participant
Regular Participant
Posts : 30
Join date : 2011-09-30
Location : India

Multiple choice selection using RC Empty Re: Multiple choice selection using RC

Wed Jan 25, 2012 5:59 pm
Yeah I recently added that XPath plugin to my browser and it's really helpful.

Please find the XPath values for the elements I have,

The XPath for the checkbox of the row-1:column-1,

Code:
html/body/div[3]/div[2]/div/div/div/div[1]/section/div/div/div/div[2]/div/div[2]/div/div[1]/div[3]/div[2]/div/div/div[2]/div[4]/div[4]/div[2]/div[2]/div/table/tbody/tr/td[1]/div/div/input

The XPath of the cell having the unique text of row-1:column-2,

Code:
html/body/div[3]/div[2]/div/div/div/div[1]/section/div/div/div/div[2]/div/div[2]/div/div[1]/div[3]/div[2]/div/div/div[2]/div[4]/div[4]/div[2]/div[2]/div/table/tbody/tr/td[2]/div

Tried,
Code:

for(int i=1; i<=(Integer)selenium.getXpathCount("//html/body/div[3]/div[2]/div/div/div/div[1]/section/div/div/div/div[2]/div/div[2]/div/div[1]/div[3]/div[2]/div/div/div[2]/div[4]/div[4]/div[2]/div[2]/div[1]/table/tbody/tr"); i++) {
            if(selenium.getText("//html/body/div[3]/div[2]/div/div/div/div[1]/section/div/div/div/div[2]/div/div[2]/div/div[1]/div[3]/div[2]/div/div/div[2]/div[4]/div[4]/div[2]/div[2]/div[1]/table/tbody/tr["+i+"]/td[2]").equalsIgnoreCase("<matching-text>")) {
                selenium.click("//html/body/div[3]/div[2]/div/div/div/div[1]/section/div/div/div/div[2]/div/div[2]/div/div[1]/div[3]/div[2]/div/div/div[2]/div[4]/div[4]/div[2]/div[2]/div[1]/table/tbody/tr["+i+"]/td[1]/div/div/input[@type='checkbox']");
               
            }
        }
avatar
Bhuvaneswari
Regular Participant
Regular Participant
Posts : 30
Join date : 2011-09-30
Location : India

Multiple choice selection using RC Empty Re: Multiple choice selection using RC

Fri Feb 03, 2012 11:49 am
Thanks a lot. Finally I got it working.

But my scenario is like I have number of frames added to my web page. The frames location differ based on which is opened first. And because of this the xpath differs for different scenarios.

Any idea on how we can handle this xpath varying scenario please ?
Sponsored content

Multiple choice selection using RC Empty Re: Multiple choice selection using RC

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