摘要:
aa=wd.find_elements_by_xpath('//a') for a in aa: print(a.text) #显示所有A标签中文本 aa=wd.find_elements_by_xpath('//a') for a in aa: print(a.get_attribute("hre 阅读全文
摘要:
1、sqlite3数据库select * from QG order by random() limit 6 以下显示前10条记录 2、SQL Server数据库select top 10 * from table_name; 3、DB2数据库select * from table_name fet 阅读全文