定位不到想要的元素和效果
目标网站: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')
试试xpath或者其他方法定位试试呢。
试试xpath或者其他方法定位试试呢。 挨个元素定位,单步解决问题
页:
[1]