51Testing软件测试论坛
标题:
定位不到想要的元素和效果
[打印本页]
作者:
测试积点老人
时间:
2022-9-16 11:17
标题:
定位不到想要的元素和效果
目标网站:
https://music.163.com/#/song?id=399354373
需求:
1、爬取前10页此音乐对应的名字以及评论信息
2、保存到csv(名字和评论要对应)
from selenium import webdriver
import time
import csv
drive = webdriver.Chrome()
drive.get('https://music.163.com/#/song?id=399354373')
ifranme = drive.find_element_by_id('g_iframe')
drive.switch_to.frame(ifranme)
time.sleep(3)
name = drive.find_element_by_class_name('itm')
复制代码
作者:
郭小贱
时间:
2022-9-19 13:41
试试xpath或者其他方法定位试试呢。
作者:
bellas
时间:
2022-9-19 13:54
试试xpath或者其他方法定位试试呢。
作者:
jingzizx
时间:
2022-9-19 16:45
挨个元素定位,单步解决问题
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2