selenium frame巢狀頁面元素定位

2021-09-06 04:13:04 字數 796 閱讀 4124

注意:

#開啟本地html檔案,檔案路徑前需要加file:///,且路徑需要轉義

file_path=r'file:///e:\unittestproject\selenium\frame.html'

driver.get(file_path)

案例:本地html檔案:

**:

from selenium import webdriver

from time import sleep

driver=webdriver.firefox()

#檔案路徑前需要加file:///,且路徑需要轉義

file_path=r'file:///e:\unittestproject\selenium\frame.html'

driver.get(file_path)

sleep(2)

#切到frame巢狀頁面

driver.switch_to.frame("iframe_id")

driver.find_element_by_link_text("hao123").click()

執行結果:火狐瀏覽器自動進行了相關操作

巢狀查詢,巢狀結果

select o.u.username,u.address from orders o,user u where o.user id u.id and o.id 多對多 select u.id,u.username,u.address,o.id order id,o.number,o.createt...

PHP 條件巢狀 迴圈巢狀 條件迴圈相巢狀

1.條件巢狀 demo 假設在發3月工資的時候,不僅判定性別,還要判定男性是否有房,沒有房,可以發放住房補貼,對於女性,判定是否懷孕,懷孕還有懷孕補貼 totalmoney 0 總工資 basicmoney 8000 基本工資 男 nohouse true 沒有房?housemoney 150 住房...

C 迴圈巢狀 常見的巢狀

迴圈的巢狀就是,乙個迴圈體內又包含了另乙個完整的迴圈結構 內嵌的迴圈中還可以巢狀迴圈,這就是多層迴圈。在c 中,while迴圈 do while迴圈 for迴圈都可以互相巢狀,例如以下幾種 while語句巢狀while語句 while do while語句巢狀do while語句 do while ...