您好,登錄后才能下訂單哦!
如何在python中使用selenium 定位元素?針對(duì)這個(gè)問(wèn)題,這篇文章詳細(xì)介紹了相對(duì)應(yīng)的分析和解答,希望可以幫助更多想解決這個(gè)問(wèn)題的小伙伴找到更簡(jiǎn)單易行的方法。
報(bào)錯(cuò)
selenium.common.exceptions.WebDriverException: Message: Element is not clickable at point (234.75, 22). Other element would receive the click: <img class="logo" src="/public/desktop/common/img/game_logo.png">
需要點(diǎn)擊的按鈕頁(yè)面顯示不了,需要下拉滾動(dòng)條,能看到按鈕了才能點(diǎn)
1、嘗試下拉一段滾動(dòng)條,讓按鈕能看到
js = "window.scrollTo(100,450)" driver.execute_script(js) driver.find_element_by_css_selector("div.loginForm>input#loginBtn").click()
OK,能點(diǎn)到了
2、不是下拉加載的頁(yè)面,用方法一有點(diǎn)傻,嘗試讓滾動(dòng)條定位到指定元素位置
the_loginBtn = driver.find_element_by_css_selector("div.loginForm>input#loginBtn") ActionChains(driver).move_to_element(the_loginBtn).perform() driver.find_element_by_css_selector("div.loginForm>input#loginBtn").click()
ok,滾動(dòng)到元素位置了。但是這個(gè)按鈕在頁(yè)面頂格顯示,這個(gè)頁(yè)面有導(dǎo)航欄,要點(diǎn)擊的按鈕被固定的導(dǎo)航欄擋住了。還是報(bào)錯(cuò)。
3、元素被覆蓋,無(wú)法點(diǎn)擊
用Enter代替click
driver.find_element_by_css_selector("div.loginForm>input#loginBtn").send_keys(Keys.ENTER)
Python是一種編程語(yǔ)言,內(nèi)置了許多有效的工具,Python幾乎無(wú)所不能,該語(yǔ)言通俗易懂、容易入門(mén)、功能強(qiáng)大,在許多領(lǐng)域中都有廣泛的應(yīng)用,例如最熱門(mén)的大數(shù)據(jù)分析,人工智能,Web開(kāi)發(fā)等。
關(guān)于如何在python中使用selenium 定位元素問(wèn)題的解答就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,如果你還有很多疑惑沒(méi)有解開(kāi),可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識(shí)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。