I recorded a selenium script and converted it to Junit as I required to input some form values at run time from a text file. When I am running the .class file, its not reading a particular step and passing the result. I tried inserting "waitForPageToLoad" but same is not working.
To be more descriptive, I am automating an eCommerce project and step that is not reading is final checkout "thankyou" page. I tried to record a click on that particular page but same is not directing to thankyou page thus resulting error.
When I run the same script with selenium IDE, it works absolutely fine.
Please help.
Here is the snippet of code:
selenium.type("card_accountNumber", "555555555555xxxx");
selenium.select("card_expirationMonth", "label=09-September");
selenium.select("card_expirationYear", "label=2018"); selenium.type("card_cvNumber", abc");
//selenium.click("submitAddress");
selenium.click("//input[@value='Send My Order >>']");
System.out.println("---------- Submitting payment page--------"); selenium.waitForPageToLoad("30000");
System.out.println("----------After Submitting payment page--------");
selenium.click("link=<< Return to Shopping"); selenium.waitForPageToLoad("6000");
Step: "selenium.click("link=<< Return to Shopping");" always gives error. This is a link on thankyou page. My investigation is "thankyou" page is not generated. I tried increasing the load time but didnt got success
Error received:
C:\MyTests>java -cp selenium/selenium-java-2.0b3.jar;selenium/libs/junit-dep-4.8
.1.jar;. junit.textui.TestRunner com.example.tests.Returning_CC
.WARNING: getString(addCustomRequestHeader) saw a bad result OK
----------Submitting payment page--------
----------After Submitting payment page--------
E
Time: 92.939
There was 1 error:
1) testReturning_CC(com.example.tests.Returning_CC)com.thoughtworks.selenium.Sel
eniumException: ERROR: Element link=<< Return to Shopping not found
at com.thoughtworks.selenium.HttpCommandProcessor.throwAssertionFailureE
xceptionOrError(HttpCommandProcessor.java:100)
at com.thoughtworks.selenium.HttpCommandProcessor.doCommand(HttpCommandP
rocessor.java:94)
at com.thoughtworks.selenium.DefaultSelenium.click(DefaultSelenium.java:
167)
at com.example.tests.Returning_CC.testReturning_CC(Returning_CC.java:72)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at com.thoughtworks.selenium.SeleneseTestCase.runBare(SeleneseTestCase.j
ava:228)
FAILURES!!!
Tests run: 1, Failures: 0, Errors: 1