- Balaji1989
- Posts : 1
Join date : 2015-07-10
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
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
- AgoBalanAmateur
- Posts : 36
Join date : 2015-02-23
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
- seluserqwb1Active particpant
- Posts : 20
Join date : 2015-06-29
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
www.seleniumtests.com/p/selenium-2-forum.html
- How do i get the Xpath value for a radio button so i can click the button on a form
- click button of a pop up in webdriver
- Select the “back” button of the Firefox browser to right click and Select the Option from the right click Menu in Selenium Web Driver - Java
- How to get id or xpath of a element based on the text present in it
- Validating 'random' text based on xpath
Permissions in this forum:
You cannot reply to topics in this forum