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
sonuQA
Posts : 3
Join date : 2012-11-22

How to verify if the webElement is present or not on the webpage..?? Empty How to verify if the webElement is present or not on the webpage..??

Thu Nov 22, 2012 5:32 pm
Hi All,

I have automated our login page, which has an uname and pwd feilds, and a multiple profile drop down and a multiple contracts drop down. SO some users have multiple profile drop down and a multiple contracts drop down, some only multiple profile drop down and some only uname and pwd.

So now i have to check if multiple profile drop down is present, if present then only pass the values or directly click on submit button.

How to handle this??????

I have used isDisplayed() , also tried ---
Dimension multi_prof_dd = driver.findElement(By.xpath("//[@id='ddlCustomerList']")).getSize();
if(multi_prof_dd!= null)
{
// pass val
//click on submit
}
//click on submit button


Plz help me .. Its urgent.

Thanks in Advance.
avatar
tarun3kumar
Master
Master
Posts : 186
Join date : 2012-02-14
http://seleniumtests.com

How to verify if the webElement is present or not on the webpage..?? Empty Re: How to verify if the webElement is present or not on the webpage..??

Mon Nov 26, 2012 12:45 am
You should be using - findElements (Notice the letter 's')

Now if condition should check that it should not be 0 and not "null"

Code:
if(multi_prof_dd != 0)
avatar
sonuQA
Posts : 3
Join date : 2012-11-22

How to verify if the webElement is present or not on the webpage..?? Empty Re: How to verify if the webElement is present or not on the webpage..??

Wed Dec 19, 2012 6:57 pm
Hi tarun,
thanks for the reply, but it did not work. is der any other way to handle this plz???
avatar
tarun3kumar
Master
Master
Posts : 186
Join date : 2012-02-14
http://seleniumtests.com

How to verify if the webElement is present or not on the webpage..?? Empty Re: How to verify if the webElement is present or not on the webpage..??

Mon Dec 24, 2012 7:26 pm
Did you encounter any error?
Sponsored content

How to verify if the webElement is present or not on the webpage..?? Empty Re: How to verify if the webElement is present or not on the webpage..??

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