2014-09-05 13 views
0

我試圖從.csv文件創建電子郵件,但TO;字段和BODY字段不能被IMACROS識別。我附上了一段視頻,向您展示我所看到的內容並更好地解釋我的問題。 http://screencast.com/t/euhT6X17IMacros無法在Outlook Web App中找到POS(位置) - 請參閱視頻

下面是錯誤和腳本:

RuntimeError: element INPUT specified by SRC:https://webmail-be.tomtomgroup.com/owa/14.3.169.1/themes/resources/clear1x1.gif was not found, line 15 (Error code: -921) 

腳本:

VERSION BUILD=8820413 RECORDER=FX 
SET !DATASOURCE capterra.csv 
SET !LOOP 2 
SET !DATASOURCE_LINE {{!LOOP}} 
URL GOTO=https://webmail-be.tomtomgroup.com/owa/?modurl=0 
TAG POS=2 TYPE=SPAN ATTR=TXT:New 
TAB T=2 
wait seconds=4 
CLICK X=114 Y=46 
TAG POS=1 TYPE=DIV ATTR=ID:divTo CONTENT={{!COL5}} 
wait seconds=4 
TAG POS=1 TYPE=INPUT:TEXT ATTR=ID:txtSubj CONTENT={{!COL5}} 
wait seconds=4 
CLICK X=28 Y=32 
TAG POS=30 TYPE=INPUT:TEXT ATTR=SRC:https://webmail-be.tomtomgroup.com/owa/14.3.169.1/themes /resources/clear1x1.gif CONTENT={{!COL5}} 
TAG POS=1 TYPE=SPAN ATTR=TXT:Send 
SET !LOOP 2 

在此先感謝您的幫助。

回答

0

嘗試將其更改爲此。

TAG POS=30 TYPE=INPUT:TEXT ATTR=SRC:https://webmail-be.tomtomgroup.com/owa/14.3.169.1/themes/resources/clear1x1.gif CONTENT={{!COL5}} 
相關問題