標籤:間隔 有獎 刪除 sel 接受 driver 資料類型 innertext rem
innerTest
修改的是標籤的常值內容,如果修改的字串具有標籤的格式,不會把標籤展示到頁面中
innerHtml
列印標籤中所有子標籤 以字串的形式,如果修改的字串有標籤的格式,則直接展示到頁面中
select 操作
通過value
一定是option中value屬性對應的值
selectedindex 通過角標進行修改
展開select標籤,從上到下 依次定位 0 - n
css
1、標籤中
2、head標籤中link
3、head中style
.c1{
height:1px;
wid;;xxxx
}
.c2{}
常用 class
<div class=‘c1 c2‘></div>
id
<div id=‘i1‘></div>
ClassName
擷取標籤class屬性 字串類型 修改時 通過空格間隔css選取器
建立標籤
子標籤後面
div.insertAdjacentHTML(‘beforeEnd‘,str)
子標籤前面
div.insertAdjacentHTML(‘afterBegin‘,str)
擷取標籤前面
div.insertAdjacentHTML(‘beforeBegin‘,str)
擷取標籤後面
div.insertAdjacentHTML(‘afterEnd‘,str)
刪除
1、innerHTML
2、eleobj.removeChild(child) 形參接受子標籤對象
重新整理
location.href = location.href
location.reload()
== 和 === 區別
==只會校正值是否相同 不校正資料類型
=== 既校正資料類型也校正值
迴圈
這種迴圈支援數組 和 字典
var list = [‘dsx‘,‘nn‘];
var dict = {"name":"dsx","age":"18"};
for (var i in dict){
console.log(i)
}
這種不支援字典的迴圈
for (var i=0;i<3;i++){
console.log(list[i])
}
作業:
完善抽獎頁面的js
註冊
登入
抽獎
查看中獎紀錄
查看所有獎品資訊
xpath
//* 代表擷取全部元素
@ 後面接屬性名稱
//*[@id=‘i1‘]
屬性定位
只要是標籤中的屬性 就可以通過@進行定位
通過標籤中任意唯一屬性 進行定位
//*[@placeholder=‘請通過ID定位元素‘]
通過tagname進行範圍縮減
//input[@placeholder=‘請通過ID定位元素‘]
同時多屬性定位
//input[@class=‘classname‘ and @placeholder=‘請通過CLASSNAME定位元素‘]
如果 通過css selector必須使用角標進行定位則可以選擇使用xpath 因為css selector不支援角標定位
1、Firefox瀏覽器的 firebug firepath
2、python安裝selenium
3、下載Firefox、Google 、ie驅動並調通
from selenium import webdriver
driver = webdriver.Chrome()
driver.get(‘http://ui.imdsx.cn‘)
innerText、innerHTML