Module · The outside world✅Knowledge checkCheck: reaching past Expedify4 questions · Pass at 60%1. You write a phone number beginning with + into a Google Sheet and the cell shows an error. The write reported success. What happened?USER_ENTERED means Sheets read it as if a person had typed itThe number was longer than the cell's limit and was truncatedThe sheet has validation on that column which the node cannot seeThe node sent the value as a number, dropping the leading plus2. A site needs JavaScript, so you set the Web Scraper's engine to browser. What do you get?A real browser render, which is exactly what the option is forAn error, because the target site blocks headless browsersNot what it advertises — the browser option is unimplementedThe metered reader, being the browser engine's paid equivalent3. “Northwind Logistics funding round 2026” returns nothing from a Web Search. What does the node do next?Returns an empty result, which your workflow is expected to handleRetries the identical query once more, then gives up on itRaises a no-results error, so that the failure is visible to youSearches again on the first three words and returns that4. An API Request POST creates an order, the server processes it and then fails while replying with a 500. What does the node do?Retries the request, since a POST is not told apart from a GETStops, because retries are only ever applied to read requestsRetries, but duplicate detection prevents a second order landingFails the workflow at once, so the error path can handle itCheck answers← Back to Actions — making things happen