我已经在Oauth配置文件的SOAP UI的Automation窗口中实现了java脚本。
if (document.getElementById('login')){document.getElementById('login').value = 'xxxx@xxx.com';document.getElementById('password').value = 'xxxxx';document.loginform.submit();
}
现在,我正在使用Testrunner批处理文件从Groovy脚本运行我的测试用例/测试步骤。
如何在我的groovy脚本中为我的一个测试步骤/案例调用上面的代码来生成用户令牌?