Hi @daniel30enero44, thanks for the question.
Can you provide a sample of your HTML template? Are you reading it as a file or is it contained within an attribute inside your workflow?
It looks like the JavaScriptCaller doesn't support objects or methods usually available in the browser, such as HTTP or DOM. This might make HTML manipulation unexpectedly difficult with the JavascriptCaller. Have you taken a look at the HTMLStripper on the FME Hub as an alternative? It might be easier to perform your HTML manipulation using FME transformers.
Hope this helps,
Nathan
Hi @daniel30enero44,
To remove the divs in your workspace, I'd recommend using the String Replacer and Regex. For information on Regex I would look through this Wikipedia Article on it but essentially, it allows you to search for an expression. I used this example Tester on Regex to find an expression to remove a Span with the class Hc_hotel_rate_roomRate. I would test out the Regex and place it in the String Replacer. stringreplacer.png My colleague also recommended this website for Regex Testing.
Thanks,
Sienna
I had the same question, and following @siennaatsafe's suggestion to use the StringReplacer and some further Googling, I got to the following:
- Mode = Replace Regular Expression
- Text To Replace = <.*>(.*?)</.*>
- Replacement Text = \\1
Note: this assumes you've got opening and closing tags at either end of your string