Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我陷入了这样一种情况,我对不同的城市有不同的下拉菜单,我想计算每个城市的价值数量,例如伦敦英国下拉菜单有一个机场(儿童)下拉菜单,当我选择机场下拉菜单时将填充伦敦所有可用的机场,所以我想计算机场的数量
提前致谢
选择后London您需要做的就是一个len(driver.find_elements_by_css_selector('.child option')),.child您的子选择对象的 css 类在哪里。
London
len(driver.find_elements_by_css_selector('.child option'))
.child
find_elements返回一个数组,并len()计算它(在 python 中)。
find_elements
len()