action webscraping_get_selected_multiple { label: "HTML of multiple page areas by URL and CSS selectors" description: "Always returns JSON" provider: webscraping method: GET path: "/selected-multiple" encoding: json input: { type: "object" properties: { selectors: { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "array" description: "Array of elements matched by selectors" items: { type: "string" } } }