
In this article, we will discover following things.
- What is SDET?
- Why SDET is needed?
- When SDET is needed to an organization
- SDET vs SQA
- SDET vs Developer
- SDET vs Automation Engineer
- SDET core responsibilities
- Other responsibilities of SDET to
Let's become the Software Development Engineer in Test
In this article, we will discover following things.
১. রেজুমিতে শুধুমাত্র আপনার দরকারি স্কিল এবং Achievement গুলো রাখুন এবং অপ্রয়োজনীয় তথ্য যেমন Personal Detail, Hobbies, Interest রাখবেন না।
২. মনে রাখবেন, একটা রেজুমি একজন HR সর্বচ্চো ৮-১০ সেকেন্ড চোখ বুলায় এবং যদি তাদের সাথে সঙ্গতিপূর্ণ কোন স্কিল দেখে, … Read more
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
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
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.
… Read moreLinkedin can help you to get a new job or switch to a better job. Here are the 5 strategies:
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 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 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 Now we will access page elements by various kinds of puppeteer methods
Syntax:
For selector,await page.click('selector');
orlet element = await page.$$('selector');
await element[arrayIndex].click();
For XPath,await
… Read more