Skip to content

Instantly share code, notes, and snippets.

View JonathanTurnock's full-sized avatar

Jonathan Turnock JonathanTurnock

View GitHub Profile
@JonathanTurnock
JonathanTurnock / python-selenium-json_placeholder.py
Created December 22, 2019 21:52
Python Selenium Json Placeholder Interaction
import time
from selenium import webdriver
from selenium.webdriver import ActionChains
from selenium.webdriver.chrome.options import Options
if __name__ == '__main__':
# 1. Optional Options (Useful for development testing)
options = Options()
options.add_argument("--disable-web-security")