
Road to SDET
38 FOLLOWERS
It is a complete online learning platform where you have to attend live classes. Software Professionals having experience with 5+ or more will guide you through the "Road to SDET" academy. All the topics will be discussed from A to Z and you will not feel boring while doing class. All courses are designed in a pattern that will be 100% efficient for your long career.
Road to SDET
3M ago
১. রেজুমিতে শুধুমাত্র আপনার দরকারি স্কিল এবং Achievement গুলো রাখুন এবং অপ্রয়োজনীয় তথ্য যেমন Personal Detail, Hobbies, Interest রাখবেন না।
২. মনে রাখবেন, একটা রেজুমি একজন HR সর্বচ্চো ৮-১০ সেকেন্ড চোখ বুলায় এবং যদি তাদের সাথে সঙ্গতিপূর্ণ কোন স্কিল দেখে, … Read more
The post ????????? তে ????????? হওয়ার ????? ??????????: first appeared on Road to SDET.
Source
Related posts:
How to prepare for CTFL Certification Exam? CTFL certification is the benchmark for a tester. It tells...
How to plan for Test Automation First of all, know the Business Logic very well....
SDET Overview and Career Path ..read more
Road to SDET
7M 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
Road to SDET
1y 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
Road to SDET
1y 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
Road to SDET
1y 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
Road to SDET
1y 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
Road to SDET
1y 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
Road to SDET
1y 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
Road to SDET
1y 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
Road to SDET
1y 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