This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Wednesday, June 3, 2020

Broken Image link

HTML Image ...

Tuesday, April 28, 2020

Selenium Practice :- Drag and Drop

#div1 { width: 600px; height: 200px; padding: 20px; border: 1px solid #aaaaaa; } #div2 { width: 600px; height: 200px; padding: 20px; border: 1px solid #aaaaaa; function allowDrop(ev) { ev.preventDefault(); } function drag(ev) { ev.dataTransfer.setData("text", ev.target.id); } function drop(ev) { ev.preventDefault(); var data = ev.dataTransfer.getData("text"); ev.target.appendChild(document.getElementById(data)); } Drag...

Friday, April 24, 2020

Selenium Practice :: Hidden Radio Button

Handle Hidden Radio Box Hidden elements Male Female Lesbian Normal Scenario Java C# Python Ruby Hobbies Singing Coding Code :- Display Radio Buttons Please select your gender: Male Female Other Please select your age: 0 - 30 31 - 60 61 - 100 Hradio_TC.java package com.automation.aws.testing.test; import java.util.List; import org.openqa.selenium.By; import org.openqa.selenium.JavascriptExecutor; import org.openqa.selenium.WebDriver; import...