当前位置: 首页 > 工具软件 > pyse > 使用案例 >

Pyse框架部分脚本总结

隆选
2023-12-01
#循环遍历表格列内容
table = dr.get_text("xpath=>//*[@id='DataTables_Table_0']/tbody")
rows = table.split('\n')
for row in rows:
    col = row.split(' ')
    assert col[1]==u'字符串'
 类似资料: