FIX new edge case 'Virtueller Rundgang' symbol

This commit is contained in:
Philipp K
2022-11-07 18:05:29 +01:00
committed by Sebastian Thomschke
parent 8bcd6f9ad8
commit d7ccc8954b

View File

@@ -710,7 +710,9 @@ class KleinanzeigenBot(SeleniumMixin):
# determine number of images (1 ... N)
next_button = None
try: # check if multiple images given
image_counter = image_box.find_element(By.CSS_SELECTOR, '.galleryimage--info')
# edge case: 'Virtueller Rundgang' div could be found by same CSS class
element_candidates = image_box.find_elements(By.CSS_SELECTOR, '.galleryimage--info')
image_counter = element_candidates[-1]
n_images = int(image_counter.text[2:])
logger.info('Found %d images.', n_images)
next_button = self.webdriver.find_element(By.CSS_SELECTOR, '.galleryimage--navigation--next')