HTML Extraction concatenates results into a single item instead of multiple items on version 1.113.3

Hello everyone,
I am having a strange issue with my n8n instance (version 1.113.3) running via Docker Compose on Windows.
The core problem is that any HTML extraction (either in the HTTP Request node or the HTML node) concatenates all results into a single item, instead of outputting multiple items.
For example, when I try to scrape multiple elements, I get one item with joined text, not a list of items.
I ran a very simple test to confirm this.
Node 1: Code Node
This node just creates a simple HTML string.
JavaScript
const simpleHtml = `

  • First Item
  • Second Item
  • Third Item
`; return [ { json: { myHtml: simpleHtml } } ]; **Node 2: HTML Node** This node tries to extract the list items. - **Operation:** `Extract HTML Content` - **Source Data > JSON Property:** `myHtml` - **Extraction Rule:** - **Key:** `Text` - **CSS Selector:** `.test-item` - **Return Value:** `Text` **Expected Output:** I expect to get 3 separate items. **Actual Output:** I get only 1 item, with the JSON: `{ "Text": "First ItemSecond ItemThird Item" }` This proves the core extraction functionality is not working as expected. I have already tried a full clean reinstall with `docker-compose down -v` and `docker rmi`, but the problem persists after a fresh `docker-compose up -d`. Is this a known bug for this version, or is there another way to fix my environment? Thank you

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.