Skip to content

Instantly share code, notes, and snippets.

View ejreyme's full-sized avatar
🏠
Working from home

Emmanuel J. Reyme ejreyme

🏠
Working from home
View GitHub Profile
@ejreyme
ejreyme / helloSelenium.kt
Last active April 15, 2025 02:48
with(this) { name = "ejreyme"; seleniumLevel = 100 }
import org.openqa.selenium.chrome.ChromeDriver
import org.openqa.selenium.By
import org.openqa.selenium.Keys
import java.time.Duration
fun main() {
// 1 start the session
val driver = ChromeDriver()
// 2 take action on browser
driver.get("https://selenium.dev")
@ejreyme
ejreyme / cities.json
Created March 31, 2019 16:30 — forked from Miserlou/cities.json
1000 Largest US Cities By Population With Geographic Coordinates, in JSON
[
{
"city": "New York",
"growth_from_2000_to_2013": "4.8%",
"latitude": 40.7127837,
"longitude": -74.0059413,
"population": "8405837",
"rank": "1",
"state": "New York"
},