とあるサイトの自動操作をしようとしているのですができません
検索キーワードの入力欄をseleniumでxpath指定でやっているのですが
「selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element:」となってしまいます
HTML
1<input type="text" id="top_stock_sec" name="i_stock_sec" value="キーワード" autocomplete="off" maxlength="200" onblur="if(this.value==''){this.style.color='#999999'; this.form.reset()}" onfocus="{this.style.color='#000000'; this.value = ''}" style="width: 145px; height: 25px; border-top: 1px solid rgb(179, 179, 179); border-bottom: 1px solid rgb(179, 179, 179); border-left: 1px solid rgb(179, 179, 179); border-right: none; margin: 0px; padding: 0px 0px 0px 3px; line-height: 25px; color: rgb(153, 153, 153);" class="ui-autocomplete-input">
Python
1driver.current_url 2driver.find_element_by_xpath('//*[@id="top_stock_sec"]').click #ここでエラー 3driver.send_keys('あいうえお')
調べたところ①スクロール外でClickできない or ②取得していたXPathは新しく開きなおしたChromeのXpathを指定しているから(参照サイト①を見て多分これが原因ではないかと予想)のどちらかではないかと思います
そこで検索ボタンが画面の一番上にあるので
driver.execute_script("window.scrollTo(0, 0)")
と入力したら無反応でした
あとxpath指定だけでなくid,css,class,name,full_xpath指定でも結果は同じでした
どうすればよろしいでしょうか?
何卒ご教授よろしくお願いいたします
参考サイト
①【Python】XPathの書き方「”指定しているのに要素がない”とエラーが出た時の対処方法」
(https://sibahublog.com/how-to-handle-when-an-error-occurs-if-there-is-no-element-even-though-the-way-of-writing-pythonxpath-is-specified)
②[Python] seleniumで.click()ができない
(https://hacknote.jp/archives/51261/)
③Selenium - スクロール外でClickできないことがあった
(https://devadjust.exblog.jp/20073998/)
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/08 03:44