Nicer testing setup with my own interface and methods that abstract away the weird browser API.

This commit is contained in:
Zed A. Shaw 2025-07-11 14:34:47 -04:00
parent 77e4c3fa5b
commit 736095a5aa
4 changed files with 96 additions and 95 deletions

View file

@ -23,13 +23,13 @@
<card>
<top>Submit a Link</top>
<middle>
<input name="stream_id" type="hidden" value="1">
<input name="url" type="text" placeholder="Link Url">
<input name="description" type="text" placeholder="Description">
<input id="stream_id" name="stream_id" type="hidden" value="1">
<input id="url" name="url" type="text" placeholder="Link Url">
<input id="description" name="description" type="text" placeholder="Description">
</middle>
</card>
<buttons>
<button type="submit">Send It</button>
<button id="submit" type="submit">Send It</button>
</buttons>
</form>