- seanog1983
- Posts : 1
Join date : 2013-09-12
Selecting list of names on web page
Thu Sep 12, 2013 12:54 pm
Hi
I am using Selenium with Firefox to create a Test Case which logs onto a web page and selects a list of Customers.
Each customer when clicked on displays a list of users. Currently i am selecting each customer and displaying the list of users. The list is quiet long and so the test case for this has alot of same info just been listed line after line.
Is there a way i can just select the first Customer and then use a loop to display the rest of the customers?
I am using Selenium with Firefox to create a Test Case which logs onto a web page and selects a list of Customers.
Each customer when clicked on displays a list of users. Currently i am selecting each customer and displaying the list of users. The list is quiet long and so the test case for this has alot of same info just been listed line after line.
Is there a way i can just select the first Customer and then use a loop to display the rest of the customers?
- ccoxMaster
- Posts : 205
Join date : 2012-01-06
Age : 39
Location : Denver, CO
Re: Selecting list of names on web page
Fri Sep 13, 2013 5:17 am
Yes, you will either first need to download a user-extensions.js file with flow control or install the IDE flow control add in. This will give you the while and endWhile functions. If you specifically need to click on a user's name, create an array and click each user from the array. Otherwise if you just need to go through all the users in the dropdown, then you can select by the index in which your loop is using.
store |0 | i
while ${i}<numOfUsers
select | id=dropdownName | index=${i}
Do whatever actions/assertions you need to
store | javascript{storedVars.i++}
endWhile
store |0 | i
while ${i}<numOfUsers
select | id=dropdownName | index=${i}
Do whatever actions/assertions you need to
store | javascript{storedVars.i++}
endWhile
- my selenium html file opens the code page rather than web page
- Copy contents of table to a list on another page
- It is possible to find list of all URL's exist in any web page in selenium ide
- How to select multiple item from the web list and drop down list in Webdriver
- Need help on getting all links names in a webpage
Permissions in this forum:
You cannot reply to topics in this forum