請問如何用PYTHON selenium 爬蟲得到資料

安安 請問我想用 python selenium 得到這個網頁 web:https://hahow.in/group/music?page=1

這些資料:
課程名稱 課程時數 課程訂價 課程售價 早鳥價格 開課時間 課程狀態 課程期數 上課地點 課程講師 合作單位
課程分類 線上課程 實體課程

程式碼該怎麼寫呢 謝謝

自己寫了好久都寫不出來 不知道是哪裡錯了QQ

這是我查奇摩movie的可以找出資料,可是改上面網址卻找不出來

import requests
from bs4 import BeautifulSoup

url = 'https://movies.yahoo.com.tw/movie_intheaters.html'
r = requests.get(url)
soup = BeautifulSoup(r.text, "html5lib")
for d in soup.find_all(class_="release_info"):
print(d.find(class_="release_movie_name").find(class_="gabtn").text.replace(' ', '').replace('\n', ''))
print(d.find(class_="release_movie_time").text.replace(' ', '').replace('\n', ''))
print(d.find(class_="leveltext").find('span').text)
2019-09-18 6:35 發佈
設定Import了request與BeautifulSoup, 沒import selenium?
文不對題
內文搜尋
X
評分
評分
複製連結
Mobile01提醒您
您目前瀏覽的是行動版網頁
是否切換到電腦版網頁呢?