Solved
Forum Discussion
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
TanyaYatskovska
Alumni
7 years agoThanks for your reply, avidCoder.
max0987, is this what you are looking for? If so, accept the reply as a solution.