How to plan for Test Automation
Road to SDET
by admin
1y ago
First of all, know the Business Logic very well. For this, apply Exploratory Testing Technique or understand the features well from the Business Analyst/Project Manager. Then get a good idea about how many modules are there, what is the function … Read more The post How to plan for Test Automation first appeared on Road to SDET. Source Related posts: Software Testing In a Brief In our day-to-day life, we can see testing is everywhere... SDET Overview and Career Path In this article, we will discover following things. What is... How to prepare for CTFL Certification Exam? CTFL certification ..read more
Visit website
How to prepare for CTFL Certification Exam?
Road to SDET
by Pollab Ahmed
2y ago
CTFL certification is the benchmark for a tester. It tells that the certificate holder is well known for all the foundational testing concepts. And we all know, how important the foundation is for creating a multi-storied building. In every aspect … Read more The post How to prepare for CTFL Certification Exam? first appeared on Road to SDET. Source Related posts: Software Testing In a Brief In our day-to-day life, we can see testing is everywhere... SDET Overview and Career Path In this article, we will discover following things. What is... How to get a job or switch to a better job by Linke ..read more
Visit website
How to get a job or switch to a better job by Linkedin
Road to SDET
by admin
2y ago
Linkedin can help you to get a new job or switch to a better job. Here are the 5 strategies: Keep updating your LinkedIn profile: Strategy: Search SQA engineers on LinkedIn and see their profiles. Search jobs in bdjobs and … Read more The post How to get a job or switch to a better job by Linkedin first appeared on Road to SDET. Source Related posts: SDET Overview and Career Path In this article, we will discover following things. What is ..read more
Visit website
Step by step implementation of CICD process with GitHub and Jenkins
Road to SDET
by admin
2y ago
CI/CD process means the Continuous Integration Continuous Development which is an agile DevOps workflow focused on a frequent and reliable software delivery process. The CI/CD pipeline helps development teams improve quality, work faster and improve other DevOps metrics What is … Read more The post Step by step implementation of CICD process with GitHub and Jenkins first appeared on Road to SDET. Source Related posts: Software Testing In a Brief In our day-to-day life, we can see testing is everywhere... SDET Overview and Career Path In this article, we will discover following things. What is ..read more
Visit website
Step by step tutorial on puppeteer :: Part-3
Road to SDET
by admin
2y ago
Data scrapping from HTML table Suppose we want to get data from this HTML table: https://demoqa.com/webtables. Write following code: it("Web data scrapping", async () ={ await page.goto("https://demoqa.com/webtables"); let result = await page.evaluate(() ={ let rows = document.querySelectorAll('.rt-tbody'); … Read more The post Step by step tutorial on puppeteer :: Part-3 first appeared on Road to SDET. Source Related posts: Step by step tutorial on Puppeteer :: Part-3 Data scrapping from HTML table We will scrap data from... Step by step tutorial on ..read more
Visit website
Software Testing In a Brief
Road to SDET
by admin
2y ago
In our day-to-day life, we can see testing is everywhere whatever it is the technology, garments, medicine, vehicle, real state, or food sector. In this article, we will learn about software testing in a brief. What is testing Testing objectives … Read more The post Software Testing In a Brief first appeared on Road to SDET. Source Related posts: SDET Overview and Career Path In this article, we will discover following things. What is... How to get a job or switch to a better job by Linkedin Linkedin can help you to get a new job or ..read more
Visit website
Step by step tutorial on Puppeteer :: Part-2
Road to SDET
by admin
2y ago
HTML page element access by puppeteer Now we will access page elements by various kinds of puppeteer methods Puppeteer Click Method: Button Click Syntax: For selector, await page.click('selector'); or let element = await page.$$('selector'); await element[arrayIndex].click(); For XPath, await … Read more The post Step by step tutorial on Puppeteer :: Part-2 first appeared on Road to SDET. Source Related posts: Step by step tutorial on Puppeteer :: Part-1 What is Puppeteer Puppeteer is a google provided JS based ..read more
Visit website
Step by step tutorial on puppeteer :: part-4
Road to SDET
by admin
2y ago
Convert to Page Object Model (POM) Now we will convert our Practice Form script to page object model. Create a folder named pages and inside it, create a file named formSelectors.js Then write following code: const formSelectors = { url: … Read more The post Step by step tutorial on puppeteer :: part-4 first appeared on Road to SDET. Source Related posts: Step by step tutorial on puppeteer :: Part-3 Data scrapping from HTML table Suppose we want to get... Step by step tutorial on Puppeteer :: Part-2 HTML page element access by puppeteer Now we will access... Step by step tutorial on Pu ..read more
Visit website
Step by step tutorial on java rest assured framework using cucumber by maven
Road to SDET
by admin
2y ago
install rest assured and cucumber maven dependencies Open IntelliJ Go to File > New > Project Select Maven Click on the Next button Give the project name and click on the Finish button Now open pom.xml file Add following dependencies: … Read more The post Step by step tutorial on java rest assured framework using cucumber by maven first appeared on Road to SDET. Source Related posts: Step by step tutorial to integrate cucumber with selenium by Maven Configure Maven Go to CMD and give this command:mvn --version... Parameterized cucumber integration with Puppeteer In this project, we wi ..read more
Visit website
Step by step tutorial on Puppeteer :: Part-3
Road to SDET
by admin
2y ago
Data scrapping from HTML table We will scrap data from the following page: https://demoqa.com/webtables Write following code: it("Web data scrapping", async () ={ await page.goto("https://demoqa.com/webtables"); let result = await page.evaluate(() ={ let rows = document.querySelectorAll('.rt-tbody'); return Array.from(rows, row … Read more The post Step by step tutorial on Puppeteer :: Part-3 first appeared on Road to SDET. Source Related posts: Step by step tutorial on Puppeteer :: Part-2 HTML page element access by puppeteer Now we will access ..read more
Visit website

Follow Road to SDET on FeedSpot

Continue with Google
Continue with Apple
OR