imacros

How can I set up a 24 hours operation with iMacros?

ⅰ亾dé卋堺 提交于 2019-12-12 01:27:36
问题 How can I set up a 24 hours a day, 7 days a week (non-stop) operation with iMacros? I Found that code but i can't adapt it my macro. i don't know use visual basic but i setup vbs 2008 today. How can i use that code on my imacros code? Anybody can tell it step by step on vbs. Thanks 'Sample code B Set iim1= CreateObject ("imacros") For m = 1 to 5000 iret = iim1.iimInit() For n = 1 to 1000 iret = iim1.iimPlay ("macro1") Next iret = iim1.iimExit() Next Source: http://wiki.imacros.net/Web_Testing

imacros: Press ALL (number varies) buttons within a given frame

自作多情 提交于 2019-12-12 01:27:20
问题 FF 42.0 Imacros for FF BUILD=8940826 Early 2008 8 core MacPro OSX 10.8.2 Looking to press however many buttons happen to be present within a given frame. I suppose I could just loop up to some unreasonably large number and ignore errors, but that seems clumsy to me. So, if a button press for the first button in the frame looks like this: TAG Pos=1 TYPE=Button ATTR=DATA-LOG-CLICK:add-button and each one after that varies only by the TAG Pos#, is there a way to search for the highest TAG Pos#,

imacros read from excel

老子叫甜甜 提交于 2019-12-12 00:52:45
问题 I have a code to import data from csv file to iMacros and the part at which i am struck now is the iMacros is printing the values of the excel row wise and i want it to be printed in colulmn wise. I Get this error though I have used the {keyword !Col1}} VERSION BUILD=10.4.28.1074 'Uses a Windows script to submit several datasets to a website, e. g. for filling an online database ' Specify input file (if !COL variables are used, IIM automatically assume a CSV format of the input file 'CSV =

imacros FireFox: Cannot replicate this website button press in any record mode

依然范特西╮ 提交于 2019-12-11 23:08:21
问题 FF 42.0 / Imacros for FF BUILD=8940826 / 2.8Ghz 8 core Early 2008 MacPro / OSX 10.8.2 PROBLEM: After clicking on the search icon on Spotify's web player, a drawer opens which contains the search field. Enter a search term, and buttons appear below the search field within the drawer. I want to press the first button for top results which is the artist page for the most direct search hit (outlined in green). Doing so manually takes you directly to that artist's page. ALL of the recording modes

how can i use short link to DATASOURCE folder

回眸只為那壹抹淺笑 提交于 2019-12-11 20:07:19
问题 How can i shorter the directory code, cause i'm making requested script, and person that will use this, have another directory name. SET !DATASOURCE C:\Users\Viktor\Documents\iMacros\DataSources\FacebookInviter\FBGroups.csv 回答1: My suggestion: SET !DATASOURCE {{!FOLDER_DATASOURCE}}\FacebookInviter\tv-series.csv or set any folder variable you'd like. 来源: https://stackoverflow.com/questions/32921157/how-can-i-use-short-link-to-datasource-folder

XPCOM writeString error

十年热恋 提交于 2019-12-11 19:15:40
问题 I am using this function to write text to a file via iMacros addon in FireFox. //This function writes string into a file function WriteFile(path,string) { //import FileUtils.jsm Components.utils.import("resource://gre/modules/FileUtils.jsm"); //declare file var file = new FileUtils.File(path); //declare file path file.initWithPath(path); //if it exists move on if not create it if (!file.exists()) { file.create(file.NORMAL_FILE_TYPE, 0666); } var charset = 'EUC-JP'; var fileStream = Components

iMacros cannot insert content into text field

社会主义新天地 提交于 2019-12-11 18:07:04
问题 I want to input data from csv to form on website through iMacros. While recording iMacros, I got this code TAG POS=1 TYPE=DIV ATTR=CLASS:checker__title-input<SP>js_checker__title-input<SP>js_checker_module__input&&NAME:text-title&&DATA-PLACEHOLDER:Paste<SP>Your<SP>Title<SP>Here&&CONTENTEDITABLE:true&&TXT: Now, I want to add data from col1 of my csv. How can I insert that code into the above one? I tried this for a single text line. But it's not working.. TAG POS=1 TYPE=DIV ATTR=CLASS:checker_

How to check if a field exists using iMacro

南楼画角 提交于 2019-12-11 12:19:50
问题 I Need to check to see if an html field exists in a website using iMacro plugin for firefox. If the field does not exist, then I need to perform a different opperation 回答1: TAG POS=1 TYPE=A ATTR=TXT:C TAG POS= Which A class do yo want. Type= To find your text in that class ATTR= What do want from that class. (TXT, HREF...) TXT(or something different): You can use * to find anything in class. İt marks the object. Or you want to search example: TAG POS=1 TYPE=B ATTR=TXT:I<sp>am<sp>a<sp>text.

can we do this imacros javascript for listbox values of website multi level categories

China☆狼群 提交于 2019-12-11 09:48:14
问题 i am not sure where to start. i have a website where data is stored in list box controls. If i use "TXTALL" tag i can save list values. 1st step is to collect list of "_s_brand" manufacturers and store it in a array 2nd step is to collet 2nd level families - "_s_name" and store it in arrany for each "_s_brand" manufacturer 3rd step is to collect series for each "_s_brand" and for each "_s_name" 4th step is to final setp is for each "_s_brand" and for each "_s_name" and for each collect "_s

Can imacros clear ALL history, cache and cookies

谁说我不能喝 提交于 2019-12-11 09:30:56
问题 Is there a way to clear all cache and cookies (equivalent of pressing ctrl + shift + del in firefox and selecting every checkbox) using imacros? I know about the CLEAR command but I have found that it doesn't clear everything. Thank you. 回答1: Use the CLEAR command so that times of website response measurements are not influenced by using local cache data: 回答2: The code "CLEAR" without quote actually deletes all content. Make sure you do not run this function in incognito mode. This is because