I need scraping the list from spotify, for example:
"https://open.spotify.co m/playlist/6iwz7yurUKaILuy kiyeztu
As the list is dynamic loaded, I use iterate index to search each item, as [clicknium](https://www.clicknium.c om) can automatically scroll to the item, it will trigger to load new items.
I use parametric locator for title and author


As one itme may has multiple authors, so I use the following code to get multiple author's name and link:
For the full sample code, please refer to github repo
"https://open.spotify.co m/playlist/6iwz7yurUKaILuy kiyeztu
As the list is dynamic loaded, I use iterate index to search each item, as [clicknium](https://www.clicknium.c om) can automatically scroll to the item, it will trigger to load new items.
I use parametric locator for title and author


As one itme may has multiple authors, so I use the following code to get multiple author's name and link:
Code:
element = tab.find_element(locator.chrome.open.div_auther, {'index':index})
authers = element.children
for item in element.children:
artist.append(item.get_text())
link.append(item.get_property('href'))
Comment