HTML
こんな感じのHTMLがある時 画像の選択ボタン <input type="file" name="image" accept=".jpg,.jpeg"> アップロードさせるボタン <input type="submit" name="submit" value="画像アップロード"> Seleniumのコードはこうなる from selenium.webdriver.common.by import By # 画像をセット def set_image(driver, value): image_path = f'/path/to/{value}' input_element = drive…
<table id="tb"> <thead> <tr> <th>利用者</th> </tr> </thead> <thead> <tr> <th>利用者</th> </tr> </thead> <tbody> <tr> <td>aho</td> <td>hoge</td> </tr> <tbody> </table> ahoを変えたい これはだめ #tb tbody tr td:nth-child(0) { width: 10px; color: white; } こっち #tb tbody tr td:first-child { width: 10px; color: white; } #…
<td colspan="9"> これを <td colSpan={9}> にしたい。 置換元 colspan="([0-9])*"> 置換後 colSpan={$1}> これは使い物にならない・・・ HTML to JSX VSCodeならこれいいかも? https://marketplace.visualstudio.com/items?itemName=riazxrazor.html-to-jsx https://marketplace.visualstud</td></td>…
<html> <head> <title>印刷プレビュー</title> <style type="text/css" media="print"> <!-- tbody tr.NoPrint{ display: none; } --> </style> <script type= text/javascript> </script> </head> <body> <table> <tbody> <thead> </thead> <tr> <td> あ </td> </tr> <tr class="NoPrint"> <td> い </td> </tr> </tbody></table></body></html>