The context is springerlink. For example this series of books GTM
I want to get the information located at the bottom of each book's webpage:

All I want is the E-ISBN information on each page.
Is there's a way(not limited to selenium) that enumerate each book page and get the information?
For this easy task you can use both Selenium and BeautifulSoup, but the latter is easier and faster so let's use it to get title and E-ISBN codes.
First install BeautifulSoup with the command
pip install beautifulsoup4.Method 1 (faster): get E-ISBN directly from books list
Notice that in the books list for each book there is an eBook link, which is something like
https://www.springer.com/book/9783031256325where9783031256325is the EISBN code without the-characters.So we can get the EISBN codes directly from those urls, without the need to load a new page for each book:
Output
Method 2 (slower): get E-ISBN by loading a page for each book
This method load the details page for each book and extract from there the EISBN code:
If you are wondering
p:has(span[data-test=electronic_isbn_publication_date])select the parentpof thespanhaving attributedata-test=electronic_isbn_publication_date.