XPathで指定するとエラーになる
はじめまして。
いろいろ検索し検証しましたが、解決できなかったため質問させてください。
キャプチャの「曜日」と「月」の間のチェックボックスをクリックしたいのですが、
XPathで指定しても「指定された要素が見つかりませんでした。」とエラー表示されます。
(frame要素はページのどこにもありませんでした)
■下記は試したXPathです
XPath・・・//*[@id="hour1_monday"]
完全なXPath・・・/html/body/div[1]/div[2]/table/tbody/tr[2]/td/div/form/table[5]/tbody/tr[2]/td/table/tbody/tr[2]/td[2]/span[1]/label/input
//*input[@id="hour1_monday"]
■対象のソースコード
<td width="80%" style="overflow-wrap: break-word; word-break: break-all;">
時間1
<input type="text" id="hour1_start_time1" name="hour1_start_time1" style="width: 32px" value="" class="alnum" maxlength="5">
~
<input type="text" id="hour1_end_time1" name="hour1_end_time1" style="width: 32px" value="" class="alnum" maxlength="5">
時間2
<input type="text" id="hour1_start_time2" name="hour1_start_time2" style="width: 32px" value="" class="alnum" maxlength="5">
~
<input type="text" id="hour1_end_time2" name="hour1_end_time2" style="width: 32px" value="" class="alnum" maxlength="5">
<br>
曜日
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_monday">
<input type="checkbox" id="hour1_monday" name="hour1_monday" value="1"> 月</label></span>
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_tuesday">
<input type="checkbox" id="hour1_tuesday" name="hour1_tuesday" value="1"> 火</label></span>
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_wednesday">
<input type="checkbox" id="hour1_wednesday" name="hour1_wednesday" value="1"> 水</label></span>
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_thursday">
<input type="checkbox" id="hour1_thursday" name="hour1_thursday" value="1"> 木</label></span>
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_friday">
<input type="checkbox" id="hour1_friday" name="hour1_friday" value="1"> 金</label></span>
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_saturday">
<input type="checkbox" id="hour1_saturday" name="hour1_saturday" value="1"> 土</label></span>
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_sunday">
<input type="checkbox" id="hour1_sunday" name="hour1_sunday" value="1"> 日</label></span>
<span style="display:inline-block; padding:0.2em;width:5%;"><label for="hour1_holiday">
<input type="checkbox" id="hour1_holiday" name="hour1_holiday" value="1"> 祝</label></span>
</td>
何卒よろしくお願いいたします。