Skip to content
Advertisement

Selenium unable to locate “app-id-title” element when trying to load google play page

I am trying to run this code to scrape reviews from the google play store – but I keep getting the following error:

JavaScript

I suspect it has something to do with the id-app-title in

JavaScript

Could someone point out where I would find that Id for the app I am interested in OR help me identify where I am going wrong.

Thanks

EDIT

The final result I want needs to look something like this: Image from github

where for which ever app url I insert – it will extract the rating and reviews:

Thanks

Advertisement

Answer

That code is from 2016, so I’m assuming they changed the structure which is why there is no ‘id-app-title’ or anything from the original code. That’s just my assumption.

There’s a lot of work that still needs to be done with this code (like changing out the time.sleep for implicit waits by selenium, and quite frankly just to make it more robust, as I only was looking at this particular app review.EDIT SEE BELOW) It’s really complex html with tons of nested div and span tags with no specific meaning associated with the attributes/ class, etc. So I had trouble pulling out each user review element.

But essentially, I was able to open the page with the browser, have it continue to scroll down until it can click “Show More”, and just continue an x amount of times.

Once it does that, it iterates the span tags. Now I figured out every 10 span tags is relating to a single user. However if the app owner responds to a review, it offsets then by 2 so had to account for that.

I’m fairly newer to programming, so I apologize for messy code and inefficiency. I’m sure an expert would be able to provide a better solution, however, this can hopefully get you started or playing around:

JavaScript

Output:

JavaScript

Edit:

I tried with a couple different links:

JavaScript

and it appeared to work:

Output:

JavaScript

And

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement