blob: f7c8dbb526d26daf7940eee9ca2cebb874ab9f07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
---
title: "Poor Man's Selenium"
summary: "When chrome-driver just decides to not work on your development workstation today"
draft: true
---
Idea: do what I did for certain website scraping, just write elaborate code inside the javascript console
- `HTMLElement.click()`
- `setTimeout` recursion, or hand-craft some async/await timeouts?
- `HTMLElement.outerHTML` to stringify a DOM node
|