← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #244624]: in sikuli how to ask user input at runtime

 

Question #244624 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/244624

obiwan-92 proposed the following answer:
You need to change a little bit ;)

Replace :
input("Please enter uname",uname)
input("Please enter pwd",pwd)
login(uname,pwwd)

by :
uname = "default_login"
uname = input("Please enter uname",uname)
pwd = input("Please enter pwd")
login(uname,pwwd)

This should be work. ;-)

Reagrds.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.