Imagesearch Command Problem.

Discussions and Tech Support specific to the iMacros Firefox add-on.
Forum rules
iMacros EOL - Attention!

The renewal maintenance has officially ended for Progress iMacros effective November 20, 2023 and all versions of iMacros are now considered EOL (End-of-Life). The iMacros products will no longer be supported by Progress (aside from customer license issues), and these forums will also no longer be moderated from the Progress side.

Thank you again for your business and support.

Sincerely,
The Progress Team

Before asking a question or reporting an issue:
1. Please review the list of FAQ's.
2. Use the search box (at the top of each forum page) to see if a similar problem or question has already been addressed.
3. Try searching the iMacros Wiki - it contains the complete iMacros reference as well as plenty of samples and tutorials.
4. We can respond much faster to your posts if you include the following information: CLICK HERE FOR IMPORTANT INFORMATION TO INCLUDE IN YOUR POST
Post Reply
aviheaven
Posts: 9
Joined: Fri Dec 30, 2016 7:53 pm
Contact:

Imagesearch Command Problem.

Post by aviheaven » Fri Mar 02, 2018 3:54 pm

http://www.screencast.com/t/z306X9JR

Code: Select all

VERSION BUILD=9030808 RECORDER=FX
TAB T=1

' Use the following values for 1920x1080 resolution
' SET df1_y1 330
' SET df2_y1 360

' Use the following values for 1024x768 resolution
SET df1_y1 372
SET df2_y1 402

SET applicantsGivenName "John Doe"
SET birthPlace "United States"
SET fathersName "Dad Doe"
SET mothersName "Mom Doe"

'URL GOTO=http://indianvisa-bangladesh.nic.in/visa/Appointment_Login.jsp

SET !ERRORIGNORE YES
SET !TIMEOUT_STEP 1

SET dynamicField1 NotFound
SET dynamicField2 NotFound

IMAGESEARCH POS=1 IMAGE=ApplicantGivenName_Label.png CONFIDENCE=95
SET dynamicField1 EVAL("if ({{!IMAGEY}} > {{df1_y1}} && {{!IMAGEY}} < {{df1_y1}} + 10) \"{{applicantsGivenName}}\";")
SET dynamicField2 EVAL("if ({{!IMAGEY}} > {{df2_y1}} && {{!IMAGEY}} < {{df2_y1}} + 10) \"{{applicantsGivenName}}\";")
IMAGESEARCH POS=1 IMAGE=Answer.png CONFIDENCE=95

IMAGESEARCH POS=1 IMAGE=BirthPlace_Label.png CONFIDENCE=95
SET dynamicField1 EVAL("if ({{!IMAGEY}} > {{df1_y1}} && {{!IMAGEY}} < {{df1_y1}} + 10) \"{{birthPlace}}\"; else \"{{dynamicField1}}\";")
SET dynamicField2 EVAL("if ({{!IMAGEY}} > {{df2_y1}} && {{!IMAGEY}} < {{df2_y1}} + 10) \"{{birthPlace}}\"; else \"{{dynamicField2}}\";;")
IMAGESEARCH POS=1 IMAGE=Answer.png CONFIDENCE=95

IMAGESEARCH POS=1 IMAGE=FatherName_Label.png CONFIDENCE=95
SET dynamicField1 EVAL("if ({{!IMAGEY}} > {{df1_y1}} && {{!IMAGEY}} < {{df1_y1}} + 10) \"{{fathersName}}\"; else \"{{dynamicField1}}\";;")
SET dynamicField2 EVAL("if ({{!IMAGEY}} > {{df2_y1}} && {{!IMAGEY}} < {{df2_y1}} + 10) \"{{fathersName}}\"; else \"{{dynamicField2}}\";;")
IMAGESEARCH POS=1 IMAGE=Answer.png CONFIDENCE=95

IMAGESEARCH POS=1 IMAGE=MotherName_Label.png CONFIDENCE=95
SET dynamicField1 EVAL("if ({{!IMAGEY}} > {{df1_y1}} && {{!IMAGEY}} < {{df1_y1}} + 10) \"{{mothersName}}\"; else \"{{dynamicField1}}\";;")
SET dynamicField2 EVAL("if ({{!IMAGEY}} > {{df2_y1}} && {{!IMAGEY}} < {{df2_y1}} + 10) \"{{mothersName}}\"; else \"{{dynamicField2}}\";;")
IMAGESEARCH POS=1 IMAGE=Answer.png CONFIDENCE=95

EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(3)>DIV>FORM>DIV:nth-of-type(5)>DIV:nth-of-type(2)>INPUT" CHARS="{{dynamicField1}}"
EVENTS TYPE=KEYPRESS SELECTOR="HTML>BODY>DIV>DIV:nth-of-type(3)>DIV>FORM>DIV:nth-of-type(6)>DIV:nth-of-type(2)>INPUT" CHARS="{{dynamicField2}}"

It's Not Working in my pc. Now I want to know that how can i calculate SET df1_y1 372 and SET df2_y1 402. Or The way that How can input value by Imagesearch Command in mozila Firefox.
Last edited by chivracq on Tue Oct 11, 2022 8:55 am, edited 1 time in total.
Reason: Code Block added for Readability.
Post Reply