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
Balaji1989
Posts : 1
Join date : 2015-07-10

Text Generation based on button click Empty Text Generation based on button click

Fri Jul 10, 2015 8:50 pm
Hi All,

I have a requirement like..When we click on a button named "Generate", a text field beside it will get autopopulated with some  reference number. I developed a script to click on this button using selenium webdriver. The test case gets executed but the text field doesnot get populated. Is there any way to rectify this. Please help.

                WebDriverWait refNum_Wait = new WebDriverWait(driver,20); 
refNum_Wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("genRefNo"))); <==Button id
driver.findElement(By.id("genRefNo")).click();
driver.manage().timeouts().pageLoadTimeout(10, TimeUnit.SECONDS);

refNum_Wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("refNum")));   <== Text box id
System.out.println("Text::"+driver.findElement(By.id("refNum")).getText());

Final sysout for the text box comes as empty..


Thansks,
Balaji S
avatar
AgoBalan
Amateur
Amateur
Posts : 36
Join date : 2015-02-23

Text Generation based on button click Empty Re: Text Generation based on button click

Tue Jul 14, 2015 11:50 am
As you said "The test case gets executed ", does this mean it clicked on the button successfully,or without clicking test case got successed.... Make sure your clicking on the expected elem,ent
avatar
seluserqwb1
Active particpant
Active particpant
Posts : 20
Join date : 2015-06-29

Text Generation based on button click Empty Re: Text Generation based on button click

Tue Jul 14, 2015 6:00 pm
Please post your question in official webdriver forum  - 
www.seleniumtests.com/p/selenium-2-forum.html
Sponsored content

Text Generation based on button click Empty Re: Text Generation based on button click

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