Insomnia Core
If you’re familiar with working with HTTP APIs, you’ll understand the challenges of creating new commands for each test case, […]
document.addEventListener('scroll', () => {
const header = document.querySelector('.dz-header');
if (window.scrollY > 50) {
header.classList.add('scrolled');
} else {
header.classList.remove('scrolled');
}
});
If you’re familiar with working with HTTP APIs, you’ll understand the challenges of creating new commands for each test case, […]