Furqan

Open Website With Proxy in Browser Using Python 3 & Selenium

Open Website With Proxy in Browser Using Python 3 & Selenium

PROXY = "149.215.113.110:70" webdriver.DesiredCapabilities.FIREFOX['proxy'] = { "httpProxy":PROXY, "ftpProxy":PROXY, "sslProxy":PROXY, "noProxy":None, "proxyType":"MANUAL", "class":"org.openqa.selenium.Proxy", "autodetect":False } # you have to use remote,…

July 6, 2022

Get Coordinates & Dimensions of Element with Python and Selenium

app.py driver = webdriver.Firefox() e = driver.find_element_by_xpath("//someXpath") location = e.location size = e.size w, h = size['width'], size['height'] print(location) print(size)…

July 6, 2022

Convert YAML to CSV File Using Python 3 and pyyaml

Working with configuration files and data exports? You'll often need to convert YAML files into CSV format for spreadsheet analysis,…

October 21, 2025

Wordle Clone JavaScript – Full Source Code

In this tutorial, you will learn how to create a JavaScript Wordle clone. I'll also provide the full wordle source…

July 15, 2022

JavaScript Word Guessing Game Source Code

index.html <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>JavaScript Word Guessing Game | Edopedia.com</title> <style> /* Import Google font…

July 6, 2022

Build File Downloader From URL Using JavaScript HTML5 CSS3

Free JavaScript file download from URL script. index.html <!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <title>File Downloader in JavaScript…

July 6, 2022

Create Digital Alarm Clock With Ringtone & Custom Icons in JavaScript HTML5 CSS3

In this tutorial, I will teach you how to create a Digital Alarm Clock with Ringtone using HTML5, CSS3, and JavaScript. The…

October 8, 2022

Build English Dictionary App Using JavaScript HTML5 CSS3

index.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> * { padding:…

July 6, 2022

jsPDF Html2Canvas Tutorial: Convert Div With Attribute Hidden to PDF and Print it in Browser Using HTML5 and JavaScript

In this tutorial, you will learn how to use jsPDF Html2Canvas to print hidden div. To hide an HTML tag;…

September 18, 2022

Angular 13 jsPDF Html2Canvas Project: Export Multiple HTML Div Content in Different PDF Pages Using TypeScript

On the Angular 2 framework (now Angular 13), you can use the step-by-step logic mentioned below: On click execute generateAllPdf()…

July 6, 2022