Search found 37 matches

by Thrilling
Wed Oct 17, 2018 8:52 am
Forum: iMacros for Firefox
Topic: Forms on website don't validate/save input via iMacros
Replies: 14
Views: 7627

Re: Forms on website don't validate/save input via iMacros

Hi chivracq, long time no see :) thanks for helping Error message: i meant the "required field" message as seen in the JPG 1. Script for Page 1 VERSION BUILD=8970419 RECORDER=FX TAB T=1 TAG POS=1 TYPE=SELECT ATTR=ID:infoCitizenship CONTENT=%27 TAG POS=1 TYPE=SELECT ATTR=ID:applicantDocType...
by Thrilling
Wed Oct 17, 2018 8:34 am
Forum: iMacros for Firefox
Topic: Forms on website don't validate/save input via iMacros
Replies: 14
Views: 7627

Forms on website don't validate/save input via iMacros

Hi, I'm using iMacros 8.9.7 on FIrefox 45.9.0 ESR on Solaris 11.3 (x64, german) I'm writing a script to automatically fill in forms from an excel-file. When inputting data via iMacros script (data from the CSV-file or data written into the script itself, same result), this happens: 123jpg.jpg The we...
by Thrilling
Tue Sep 19, 2017 11:47 am
Forum: General Support & Discussions
Topic: EVAL IF ELSE, using text, not numbers
Replies: 4
Views: 5754

Re: EVAL IF ELSE, using text, not numbers

Works like a charm. Thank you very much for the different approaches, even though my questions are very "newbie"ish :oops: I'll make sure to reference the site you linked, in the future :!: VERSION BUILD=8970419 RECORDER=FX TAB T=1 SET !DATASOURCE_DELIMITER ; SET !DATASOURCE Russland.csv S...
by Thrilling
Tue Sep 19, 2017 7:43 am
Forum: General Support & Discussions
Topic: EVAL IF ELSE, using text, not numbers
Replies: 4
Views: 5754

Re: EVAL IF ELSE, using text, not numbers

Thanks, it works for "no" now, but i also need it to recognize several words: SET !VAR2 EVAL("var x='{{!COL1}}'; var z; if(x=='no'){z=0;} else{z=1;} ; if(x=='No'){z=0;} else{z=1;}; z;") When i do this, it works for "No", but not for "no". i can only theorize, ...
by Thrilling
Mon Sep 18, 2017 2:35 pm
Forum: General Support & Discussions
Topic: EVAL IF ELSE, using text, not numbers
Replies: 4
Views: 5754

EVAL IF ELSE, using text, not numbers

Hello, I'm using iMacros 8.9.7 on FIrefox 45.9.0 ESR on Solaris 11.3 (x64, german) It's a simple problem I'm missing the syntax to. I'd like imacros to check if theres a certain word in the .csv, and to choose an option accordingly. the following does not work: SET !var2 EVAL("var x = \"{{...
by Thrilling
Fri Sep 15, 2017 6:36 pm
Forum: General Support & Discussions
Topic: IF THEN ELSE to input varying Data from .CSV list
Replies: 5
Views: 6025

Re: IF THEN ELSE to input varying Data from .CSV list

Thanks for the kind words :D I'm rather surprised myself that i managed to write that code with no hickups. I came here with 0 knowledge of writing macros, as you know, and you really helped me jumpstart learning the basics. Don't listen to insultive people, they apparently don't appreaciate the vir...
by Thrilling
Fri Sep 08, 2017 3:25 pm
Forum: General Support & Discussions
Topic: IF THEN ELSE to input varying Data from .CSV list
Replies: 5
Views: 6025

Re: IF THEN ELSE to input varying Data from .CSV list

Works like a charm. Allow me to express my gratitude towards your continuous and kind help, from myself and from my team (who admittedly are watching me progress with more of a slight skepticism, rather than an understanding of the comfort and speed using macros means for our future work :roll: they...
by Thrilling
Wed Sep 06, 2017 2:40 pm
Forum: General Support & Discussions
Topic: IF THEN ELSE to input varying Data from .CSV list
Replies: 5
Views: 6025

IF THEN ELSE to input varying Data from .CSV list

Hello, I'm using iMacros 8.9.7 on FIrefox 45.9.0 ESR on Solaris 11.3 (x64, german) I'd like to, if possible, input this data Route Excel.jpg into this setup Route Webseite.jpg I'd like iMacros to recognize the route number (field marked yellow, manually input by user before running macro), then inpu...
by Thrilling
Fri Sep 01, 2017 3:35 pm
Forum: General Support & Discussions
Topic: How to define a part of an excel value to write in textbox
Replies: 7
Views: 6015

Re: How to define a part of an excel value to write in textb

ah, so you can determine a character as the separator and select each segment.. nifty tool. I'll keep it in mind for further usage. :) Thank you
by Thrilling
Fri Sep 01, 2017 1:24 pm
Forum: General Support & Discussions
Topic: How to define a part of an excel value to write in textbox
Replies: 7
Views: 6015

Re: How to define a part of an excel value to write in textb

Works like a charm, thank you very much. Removing the "0" by running it through calculation.. neat! VERSION BUILD=8970419 RECORDER=FX TAB T=1 SET !DATASOURCE_DELIMITER ; SET !DATASOURCE Address.csv SET !DATASOURCE_LINE 2 SET !VAR1 EVAL("var test = \"{{!col5}}\"; var y = test...
by Thrilling
Wed Aug 30, 2017 2:35 pm
Forum: General Support & Discussions
Topic: How to define a part of an excel value to write in textbox
Replies: 7
Views: 6015

Re: How to define a part of an excel value to write in textb

I managed to figure out the first Problem, but am still stuck with the month. Solution: VERSION BUILD=8970419 RECORDER=FX TAB T=1 SET !DATASOURCE_DELIMITER ; SET !DATASOURCE Address.csv SET !DATASOURCE_LINE 2 SET !VAR1 EVAL("var test = \"{{!col5}}\"; var y = test.substring(0,2); y&quo...
by Thrilling
Wed Aug 23, 2017 8:53 am
Forum: General Support & Discussions
Topic: How to define a part of an excel value to write in textbox
Replies: 7
Views: 6015

How to define a part of an excel value to write in textbox

Hello, I'm using iMacros 8.9.7 on FIrefox 45.9.0 ESR on Solaris 11.3 (x64, german) If possible, I'd like to make iMacros put this birthdate information from one Excel value: excel.png Into these three boxes: date of birth.png My idea for the two textboxes would be to tell macros only to look at cert...
by Thrilling
Wed Aug 23, 2017 6:57 am
Forum: General Support & Discussions
Topic: writing the content of an excel value into a dropdown menu
Replies: 3
Views: 3434

Re: writing the content of an excel value into a dropdown me

works like a charm! Thank you very much. VERSION BUILD=8970419 RECORDER=FX TAB T=1 SET !DATASOURCE_DELIMITER ; SET !DATASOURCE Address.csv SET !DATASOURCE_LINE 2 TAG POS=1 TYPE=INPUT:TEXT FORM=ID:aspnetForm ATTR=ID:ctl00_phBody_StepViewMPersonalDetailsStep_SurnameLat_TextBox CONTENT={{!COL2}} TAG PO...
by Thrilling
Tue Aug 22, 2017 3:34 pm
Forum: General Support & Discussions
Topic: writing the content of an excel value into a dropdown menu
Replies: 3
Views: 3434

writing the content of an excel value into a dropdown menu

Hello, I'm using iMacros 8.9.7 on FIrefox 45.9.0 ESR on Solaris 11.3 (x64, german) My problem concerns this website: https://visa.kdmid.ru/ my problem is on the fourth page of this visa application which sadly means you'll have to fill in some bogus data to reach it How to get there: 1. select "...
by Thrilling
Wed Aug 16, 2017 3:29 pm
Forum: iMacros for Firefox
Topic: Recorded action in DropMenu does not register
Replies: 6
Views: 5645

Re: Recorded action in DropMenu does not register

Your suggestion worked perfectly, Thank you very much. And yes, you're right about me being german, maybe your subconscious had a glimpse of me having to select "Germany" in this thread, which gave it away :P Thanks again