- sonuQA
- Posts : 3
Join date : 2012-11-22
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.
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.
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"
Now if condition should check that it should not be 0 and not "null"
- Code:
if(multi_prof_dd != 0)
- sonuQA
- Posts : 3
Join date : 2012-11-22
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???
thanks for the reply, but it did not work. is der any other way to handle this plz???
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?
Permissions in this forum:
You cannot reply to topics in this forum