0
0
Postmantesting~20 mins

Description formatting (Markdown) in Postman - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Markdown Master in Postman
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
How does Postman render Markdown in descriptions?
In Postman, which of the following Markdown elements will correctly render as bold text in a request description?
A**bold text**
B`bold text`
C_bold text_
D~bold text~
Attempts:
2 left
💡 Hint
Think about the Markdown syntax for bold text.
Predict Output
intermediate
2:00remaining
What is the rendered output of this Markdown in Postman description?
Given this Markdown snippet in a Postman request description:
# Header 1
Some *italic* text and a [link](https://example.com)

What will the rendered output look like?
AHeader 1 as normal text, italic text as normal, and a link shown as URL only
BA large header 'Header 1', italic text 'italic', and a clickable link labeled 'link' pointing to https://example.com
CHeader 1 in bold, italic text in bold, and a link that is not clickable
DPlain text showing '# Header 1', '*italic*', and '[link](https://example.com)' without formatting
Attempts:
2 left
💡 Hint
Markdown headers start with # and links use [text](url) syntax.
assertion
advanced
2:30remaining
Which assertion correctly checks for presence of bold text in Postman test script?
You want to write a Postman test script to verify that the response description contains bold text formatted with Markdown. Which assertion is correct?
Postman
pm.test('Description contains bold text', () => {
    const desc = pm.response.json().description;
    // Which assertion below is correct?
});
Apm.expect(desc).to.match(/\*\*.*\*\*/);
Bpm.expect(desc).to.include('**');
Cpm.expect(desc).to.include('<strong>');
Dpm.expect(desc).to.have.property('bold');
Attempts:
2 left
💡 Hint
Markdown bold uses double asterisks, so a regex can detect it.
🔧 Debug
advanced
2:30remaining
Why does this Markdown not render as a list in Postman description?
This Markdown is used in a Postman request description:
- Item 1
-Item 2
 - Item 3

Why does only 'Item 1' render as a list item?
ABecause the indentation before 'Item 3' is too large
BBecause Postman does not support lists in descriptions
CBecause '-Item 2' lacks a space after the dash, so it's not recognized as a list item
DBecause the dash must be replaced with asterisk (*) for lists in Postman
Attempts:
2 left
💡 Hint
Markdown requires a space after the dash for list items.
framework
expert
3:00remaining
How to automate validation of Markdown formatting in Postman descriptions?
You want to create an automated test framework that validates Markdown formatting in Postman request descriptions to ensure consistent style. Which approach is best?
AWrite Selenium UI tests to open Postman app and visually check description rendering
BExport Postman collection and manually review descriptions for Markdown correctness
CUse Postman test scripts to parse the description text and apply regex checks for Markdown patterns
DUse a third-party Markdown linter tool integrated in CI pipeline to scan exported Postman collection JSON
Attempts:
2 left
💡 Hint
Think about scalable, automated validation outside Postman UI.