Solved
Forum Discussion
avidCoder
7 years agoSuper Contributor
It's really possible with ReadyAPI tool. You can use Selenium jar to automate this. Download selenium server and add that jar file to home/soapui/ext folder. And then try this code:-
import org.openqa.selenium.firefox.FirefoxDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.By; def driver = new FirefoxDriver(); driver.get("YOUR URL") //Similarly write the xpath for the next step. And you are done.