mewongster 0 Report post Posted March 29, 2013 Hi, Using WAPT for testing a page that uses Restful API urls. The page I need to parameterize follows this format on a submit requests: www.site.com/restpath1/restpath2/value The “value” is the part I am trying to parameterize. I’ve tried created/assigning a “word” parameter, but keep ending up with something like: www.site.com/restpath1/restpath2/?word=blahblah.com Is it possible to not pass the "?word'" and accomplish something like: www.site.com/restpath1/restpath2/blahblah.com Does WAPT support this Rest API parameterization? If it does, could anyone possible send me an example on how to do this? Thanks! Quote Share this post Link to post Share on other sites
sergei 0 Report post Posted April 2, 2013 You can create a variable in previous request and use it in the URL Path. Your URL Path will look like /restpath1/restpath2/$Var(some_var_name). Quote Share this post Link to post Share on other sites