SDET Overview and Career Path

iii

১. রেজুমিতে শুধুমাত্র আপনার দরকারি স্কিল এবং Achievement গুলো রাখুন এবং অপ্রয়োজনীয় তথ্য যেমন Personal Detail, Hobbies, Interest রাখবেন না।

২. মনে রাখবেন, একটা রেজুমি একজন HR সর্বচ্চো ৮-১০ সেকেন্ড চোখ বুলায় এবং যদি তাদের সাথে সঙ্গতিপূর্ণ কোন স্কিল দেখে, … Read more

Automation-Testing
  1. 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

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

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