Hey Everyone. Welcome to my channel!
My Name is Shruthi B S.
I'm passionate about teaching automation testing and making learning easier for everyone. I believe that knowledge should be shared, not kept, so others donβt have to struggle to find the right information. Here, you'll find practical tutorials, tips, and insights to help you master automation testing step by step. Letβs learn and grow together!
Script and Execute
π New Series Added β JavaScript & TypeScript Interview Questions for Playwright
Iβve started a new series focused on JavaScript & TypeScript interview preparation specifically for Playwright automation. π―
π The series includes 5 videos covering:
β JavaScript interview questions β from basic to advanced
β TypeScript concepts commonly asked in Playwright interviews
β Playwright-specific examples and questions
β Coding problems and practical scenarios
β Detailed explanations of the answers
Iβve tried to cover a wide range of questions that can help you prepare confidently for JavaScript & TypeScript interviews in Playwright automation.
If youβre preparing for a Playwright interview, make sure to watch all 5 videos in the series. Watching them from beginning to end will give you a strong understanding of the concepts and help you approach interview questions with confidence. πͺ
π₯ Series link below π
www.youtube.com/playlist?list...
Happy learning and all the best for your interviews! π
1 week ago | [YT] | 0
View 0 replies
Script and Execute
π New Videos Added!
I've uploaded a few more videos to both of my Playwright series:
π Playwright BDD Enterprise Framework Series
π Playwright API Testing Series
Whether you're learning framework design or API automation with Playwright, these new videos will help you build a strong foundation with practical, real-world examples.
If you haven't started the series yet, I recommend watching the videos in order, as each one builds on the previous concepts.
π₯ Check out the links below, and I'd love to hear your feedback, suggestions, or any topics you'd like me to cover next. Happy learning! π
API Testing in Playwright - www.youtube.com/playlist?list...
Enterprise playwright BDD Framework - www.youtube.com/playlist?list...
2 weeks ago | [YT] | 1
View 0 replies
Script and Execute
π New Video Coming Soon!
I'm working on a new video covering JavaScript & TypeScript Interview Questions for Playwright Automation.
This isn't just a list of questionsβI'll explain the logic, concepts, and interview-ready answers that are commonly discussed in QA and SDET interviews.
If you're preparing for Playwright, QA Automation, or SDET interviews, this video will be a great addition to your preparation.
1 month ago | [YT] | 14
View 6 replies
Script and Execute
π Playwright BDD Enterprise Framework Series Update
I've added a few more videos to the Playwright BDD Enterprise Framework series! π
In the latest videos, I've covered:
β Completed the Employee PIM (Personal Information Management) Module
β End-to-End Automation for the PIM Module
β Service Folder Design and Implementation
β What the Service Layer Contains and Why It's Important
β Framework Organization and Best Practices
β Real-world Enterprise Framework Concepts
If you're following the series, I highly recommend watching the videos in sequence, as each video builds on concepts covered in the previous ones.
π₯ Please check out the latest videos and let me know your feedback, suggestions, or questions in the comments. Your feedback helps improve the series for everyone!
Series link in the comments π
1 month ago | [YT] | 6
View 2 replies
Script and Execute
π Playwright BDD Enterprise Framework Series Update
I've added 3 more videos to the Playwright BDD Enterprise Framework series! π
In these videos, I've covered:
β Hooks in Cucumber
β Cucumber.js
β tsconfig.json
β Understanding the World Class
β package.json
β Inheritance, constructor, super, this, private, readonly
β Building Our First Login Automation Script
The series is designed to build the framework step by step, so I recommend watching the videos in sequence to understand the concepts clearly and follow the framework journey from the beginning.
I'd love to hear your feedback and suggestions. Let me know what topics you'd like to see covered in the upcoming videos!
www.youtube.com/playlist?list...
2 months ago | [YT] | 1
View 1 reply
Script and Execute
Playwright BDD Enterprise Framework Series
I've started a new Playwright BDD Enterprise Framework series and have already uploaded the first few videos. π
www.youtube.com/playlist?list...
2 months ago | [YT] | 1
View 0 replies
Script and Execute
πΉ API Basics β URL Breakdown (Beginner Friendly)
Many beginners get confused with API URLs, so letβs break it down simply π
π Example URL:
api.example.com/users/101
πΉ Base URL
π api.example.com/
This is the main server address (root of the API)
πΉ Resource
π /users
This tells bwhat data we are working with (users, orders, products, etc.)
πΉ Unique Identifier (ID)
π /101
This identifies a specific record (like a single user)
Hope this clears the confusion π
2 months ago | [YT] | 3
View 0 replies
Script and Execute
π New Playwright Series Coming Soon
Starting next week, Iβll begin a new Playwright BDD Framework series π₯
π In this series, weβll explore:
β Playwright + Cucumber BDD Setup
β Feature Files & Step Definitions
β Hooks & Tags
β Page Object Model (POM)
β World Class Constructor
β Custom Utilities
β Reporting Integration
β GitHub Actions & CI/CD
β Environment Configurations
β Real-time Framework Structure
β Best Practices for Scalable Frameworks
Stay tuned π
2 months ago | [YT] | 7
View 12 replies
Script and Execute
Playwright API Testing Quick Tip
Common HTTP Methods
GET β Fetch data
const res = await request.get('/users');
POST β Create data
await request.post('/users', {
data: { name: 'Test User' }
})
PUT β Update data
await request.put('/users/1', {
data: { name: 'Updated user' }
})
DELETE β Remove data
await request.delete('/users/1');
Always validate response
expect(res.status()).toBe(200);
3 months ago | [YT] | 4
View 1 reply
Script and Execute
What did you learn this week in QA?
Could be anything like:
A new automation concept (Playwright, Selenium, etc.)
A bug you discovered and how you approached it
A testing strategy or framework insight
Something from your interview prep
No matter how small, every learning counts
Drop it belowβletβs learn from each other
3 months ago | [YT] | 5
View 0 replies
Load more