sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #18376
Re: [Question #229824]: i am new to sikuli please tell about prerequisites for sikuli 1.0.0rc2
Question #229824 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/229824
Status: Needs information => Open
Pramod Kumar gave more information on the question:
###########################################################################
#1) Verify on right frame
###########################################################################
#Rgt01
if not exists ("BlEMGDConfiu.png"):
popup ("CED Editor not exists.ErrorCode: Rgt01")
exit()
#Rgt02- check the default is EMGD tab
Tmp=find("H4GD.png")
print "Rgt02 Matching Score:"
print Tmp.getScore()
if Tmp.getScore() <0.90:
popup ("CED Editor not exists.ErrorCode: Rgt02")
exit()
#Rgt03- check the right frame descriptions
Tmp=find("TheIntelErrb.png")
print "Rgt03 Matching Score:"
print Tmp.getScore()
if Tmp.getScore() <0.90:
popup ("Invalid EMGD overview descriptions.ErrorCode: Rgt03")
exit()
#check the each component descriptions
#Rgt04 check configuration desp
Tmp=find("Conngrationz.png")
print "Rgt04 Matching Score:"
print Tmp.getScore()
if Tmp.getScore() <0.90:
popup ("Invalid Configuraiton descriptions.ErrorCode: Rgt04")
exit()
#Rgt05 check the DTD desp
Tmp=find("DetaledTrril.png")
print "Rgt05 Matching Score:"
print Tmp.getScore()
if Tmp.getScore() <0.90:
popup ("Invalid DTD descriptions.ErrorCode: Rgt05")
exit()
#Rgt06 check the Package desp
Tmp=find("PackagesApad.png")
print "Rgt06 Matching Score:"
print Tmp.getScore()
if Tmp.getScore() <0.90:
popup ("Invalid DTD descriptions.ErrorCode: Rgt06")
exit()
#Rgt07 check the Installation desp
Tmp=find("Installation.png")
print "Rgt07 Matching Score:"
print Tmp.getScore()
if Tmp.getScore() <0.90:
popup ("Invalid Installation descriptions.ErrorCode: Rgt07")
exit()
click("Console.png")
sleep(2)
#Rgt08 check on Console tab
Tmp=find("BuildConsole.png")
print "Rgt08 Matching Score:"
print Tmp.getScore()
if Tmp.getScore() <0.90:
popup ("Invalid Console windows.ErrorCode: Rgt08")
exit()
popup(" Finish Test CED_GUI_001_5")
print "*** Finish Test CED_GUI_001_05"
exit()
Above is the script i am running with Sikuli-IDE-1.0.0 with python2.7 installed on my system.But i get above mentioned error.
Please answer asap.
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.