0
我正在嘗試使用for循環動態選擇元素。爲了確定範圍,我需要知道元素的數量,我如何在硒(python)中執行此操作。我需要爲此執行一個JavaScript嗎?確定Selenium中常見元素定位符的數量
# count = how??
for i in range(1, count): #element index start at 1
xpath = '//div[@class="form-group"]/select/option['+str(i)+']'
if self.find_elements_by_xpath(xpath).text == driver_name:
self.find_elements_by_xpath(xpath).click()