fix: post.py broken by Reddit markdown editor default (Playwright selector mismatch) #13
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Reddit now defaults to Markdown editor (
<textarea>) on submit page. post.py looks fordiv[contenteditable="true"](rich text editor) which is no longer visible by default. RedditClient.post() has been replaced with httpx /api/submit as a workaround. post.py should be updated or removed.Discovered 2026-04-27 during smoke testing.
Shipped. Replaced the broken Playwright markdown-editor selector with direct httpx POST to Reddit's
/api/submitendpoint. Playwright no longer used for posting — only for login/session refresh.