我使用Selenium Webdriver测试一个网站,其下拉菜单包含不同用户的不同选项。选项的数量及其值总是不同的。当我查看源代码时,我会看到下面的代码。您能否提供一个示例,说明如何在Python中废弃它并列出所有可用的选项值?
<div _ngcontent-pxo-26="" class="col-md-6">
<div _ngcontent-pxo-26="" class="form-group">
<label _ngcontent-pxo-26="" for="Filter_ClientRegion">Region</label>
<select _ngcontent-pxo-26="" class="form-control ng-pristine ng-valid ng-touched" id="Filter_ClientRegion">
<option _ngcontent-pxo-26="" value="">All</option>
<!--template bindings={}--
<option _ngcontent-pxo-26="" value="A">A</option>
<option _ngcontent-pxo-26="" value="B">B</option>
<option _ngcontent-pxo-26="" value="C">C</option>
<option _ngcontent-pxo-26="" value="D">D</option>
<option _ngcontent-pxo-26="" value="E">E</option>
<option _ngcontent-pxo-26="" value="F">F</option>
<option _ngcontent-pxo-26="" value="G">G</option>
</select>
</div>
</div>
答案 0 :(得分:1)
要select
特定的option
,您可以使用以下内容:
from selenium import webdriver
driver = webdriver.Firefox()
driver.get("some.site")
el = driver.find_element_by_id('Filter_ClientRegion')
for option in el.find_elements_by_tag_name('option'):
if option.text == 'A': # or B or C...
option.click() # select() for older versions
break
要获取values
的{{1}},您可以使用:
option
备注:强>
1.我无法完全测试上面的代码,因为我没有完整的源代码
2.请注意,options = []
driver.get("some.site")
el = driver.find_element_by_id('Filter_ClientRegion')
for option in el.find_elements_by_tag_name('option'):
options.append(option.get_attribute("value"))
# print(options)
# A B C ...
代码在评论栏中 options
,您可能无法检索其值。
答案 1 :(得分:1)
应该很容易。
array_options = []
element = WebDriverWait(self.driver, timeout=wait_time).until(
EC.visibility_of_element_located("id","Filter_ClientRegion")))
if element.tag_name == 'select':
select = Select(element)
dropdown_options = select.options
for option in dropdown_options:
array_options.append(option.text)
答案 2 :(得分:0)
你可以使用BeautifulSoup来做到这一点。
由于您提到了selenium,因此这段代码首先使用它,以防您需要通过登录或其他需要selenium的内容。如果您不需要硒,那么您可以使用soup
跳到BeautifulSoup
所在的行。上面的代码只显示了如何使用selenium获取源代码,以便BeautifulSoup
可以访问它。
首先找到包含所有HTML代码的select
标记,包括评论的内容。然后获取此列表中的每个项目,将其转换为字符串并将其连接成一个大字符串,并添加<select>
。将这个大字符串变为汤,并在其中加findAll
个option
标记。从这些标签中显示您想要的任何内容。
>>> from selenium import webdriver
>>> driver = webdriver.Chrome()
>>> content = driver.page_source
>>> from bs4 import BeautifulSoup
>>> soup = BeautifulSoup(content, 'lxml')
>>> select = soup.find('select', attrs={'id': 'Filter_ClientRegion'})
>>> items = []
>>> for item in select.contents:
... items.append(str(item).strip())
...
>>> items
['', '<option _ngcontent-pxo-26="" value="">All</option>', '', 'template bindings={}--\n <option _ngcontent-pxo-26="" value="A">A</option>\n <option _ngcontent-pxo-26="" value="B">B</option>\n <option _ngcontent-pxo-26="" value="C">C</option>\n <option _ngcontent-pxo-26="" value="D">D</option>\n <option _ngcontent-pxo-26="" value="E">E</option>\n <option _ngcontent-pxo-26="" value="F">F</option>\n <option _ngcontent-pxo-26="" value="G">G</option>\n </select>\n </div>\n</div>']
>>> newContents = '<select>' + ''.join(items).replace('--','')
>>> newSelectSoup = BeautifulSoup(newContents)
>>> options = newSelectSoup.findAll('option')
>>> len(options)
8
>>> for option in options:
... option.attrs['value']
...
''
'A'
'B'
'C'
'D'
'E'
'F'
'G'