Forum Discussion

avidCoder's avatar
avidCoder
Super Contributor
6 years ago

Re: Steps in web middle of API testing

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