javax.net.ssl.SSLException: Connection reset error
I'm using ReadyAPI 3.4.5
When I run a GET request that requires no authentication I get:
ERROR: Exception in request: javax.net.ssl.SSLException: Connection reset
ERROR: An error occurred [Connection reset], see error log for details
INFO: Error getting response for [https://racq.uat.cds.cuscal.com.au.Products:Request 1]; javax.net.ssl.SSLException: Connection reset
To test, I downloaded POSTMAN community edition and the same request on the same machine runs fine!
I have looked at previous posts and implemented several suggestions like adding -Dsoapui.https.protocols=SSLv3,TLSv1.2 to the ReadyAPI.vmoptions file but I'm still getting the error.
Also note: the same request to our dev end point https://dev-api2.racq.com.au.wadl/ works but it fails for https://racq.uat.cds.cuscal.com.au.wadl/
Yes, ReadyAPI with Selenium integration can help you to resolve this problem. Please go through this link :-
https://support.smartbear.com/readyapi/docs/integrations/selenium/integrate.html
Pseudo Code :-
//Opening a link WebDriver driver = new ChromeDriver() driver.get("You Link") //Clicking a button driver.findElement(By.xpath("locator_object")).click() //Reading as text WebElement textValue = driver.findElement(By.xpath("locator_object")).getText()
And here is the setup solution provided by me :-
https://community.smartbear.com/t5/SoapUI-Pro/Simple-Functional-Web-Testing/m-p/178221#M40572