Inputting HTML code
Forum rules
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
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
-
- Posts: 1
- Joined: Tue May 31, 2016 4:21 pm
Inputting HTML code
I am trying to fill out a form which accepts (requires) limited HTML tags. Such as < B >, < I >, < BR >, and < P >. Yet when I put these in an imacro, either through manual entry or recording, and then play back the macro, it parses these instead of inserting the raw text. Is there a way to 'escape' those commands, so they are typed out, not parsed?
-
- Posts: 135
- Joined: Wed Nov 03, 2010 12:27 pm
Re: Inputting HTML code
That shouldn't be a problem
URL GOTO=http://www.rapidtables.com/tools/notepad.htm
TAG POS=1 TYPE=TEXTAREA ATTR=ID:area CONTENT=</body>
code is displayed ok
URL GOTO=http://www.rapidtables.com/tools/notepad.htm
TAG POS=1 TYPE=TEXTAREA ATTR=ID:area CONTENT=</body>
code is displayed ok
Firefox free plugin, last version
Win7
Win7
Re: Inputting HTML code
<BR> is for new line just <SP> is for space
you can enclose text to be entered with double quotes if you are facing issue.
TAG POS=1 TYPE=TEXTAREA ATTR=ID:area CONTENT="</body><br><b>test</b>"
you can enclose text to be entered with double quotes if you are facing issue.
TAG POS=1 TYPE=TEXTAREA ATTR=ID:area CONTENT="</body><br><b>test</b>"