我有这个脚本
// Prompting user to specify the domain and acting on domain
system.stdout.writeLine('Enter the domain to test - "UAT1","UAT2","RC" or "LIVE" :');
var testingENV = system.stdin.readLine();
此外,我的测试脚本的其他部分依赖于用户输入
system.stdout.writeLine('Enter your NRIC number :');
var NRICno = system.stdin.readLine();
system.stdout.writeLine('Enter your Mobile number in the follwing format (+6588888888) :');
var MOBno = system.stdin.readLine();
目前,脚本使用sytem.stdin.readline()
正常工作我想知道我是否想要为测试人员创建一个Web界面来测试并与脚本交互,我将如何去做。