Looking to gather app version history from the Apple Store using Python? Specifically, from links like
To achieve this, it's necessary to click on the Version History button found in the What’s New section. Below is the HTML snippet pertaining to the Version History, showcasing the absence of a direct URL link:
<div class="version-history">
<button class="we-modal__show link section__nav__see-all-link"
id="modal-trigger-ember107103210"
data-metrics-click="{"actionType&":&"open&","targetType&":&"button&","targetId&":&"ModalVersionHistory&"}"
type="button">Version History</button>
<!----></div>
Upon clicking the Version History button, a new window displaying version information appears within the same page. The associated HTML code looks something like this:
<div id="modal-container"> ...version information... </div>
Prior to user interaction, this element was simply an empty container:
<div id="modal-container"></div>
This functionality seems to utilize Bootstrap’s JavaScript modal plugin, but the process of crawling content that requires a button click without a provided URL can be challenging. Seeking advice on how to go about implementing this? I have Firefox Selenium/Requests set up in Python. Appreciate any guidance in advance!