Category: Job

22
Jan
2022

Selenium Testing with Python

  https://demo.seleniumeasy.com/basic-first-form-demo.html Python selenium commands cheat sheet from selenium import webdriver #chrome_browser=webdriver.Chrome(‘./chromedriver’) driver = webdriver.Chrome() driver.get(“https://demo.seleniumeasy.com/basic-first-form-demo.html”) driver.maximize_window()…

27
Nov
2021

Software Development Life Cycle(SDLC)

Planning  Requirement Analysis Design Implementation/Coding Testing Deployment Maintenance     SDLC: Planning Requirement Analysis Design Implementatiron/Coding Testing…

04
Nov
2021

Protected: Job in Germany – জব ইন জার্মানি

There is no excerpt because this is a protected post.

22
Oct
2020

Java Puzzles to Eliminate Code Fear

A method is a set of code   variable string return void method String -equals -equalsIgnoreCase -Indexof…

23
Sep
2020

Class Object Example

Class Object – Earth is a software application where human and other thing is software objects.For creating…

19
Sep
2020

Interface Polymorphism Example

Robot.java package com.zakilive.ooplearningbyme; public class Robot implements Walkable { public void walk(){ System.out.println(“Robot Walking”); } }  …