반응형
Python Selenium 모듈에서 WebElement
객체가 있으면 get_attribute ()
를 사용하여 해당 속성의 값을 가져올 수 있습니다.
foo = elem.get_attribute('href')
'href'
라는 속성이 없으면 None
이 반환됩니다.
내 질문은 요소가 가진 모든 속성 목록을 어떻게 얻을 수 있습니까? get_attributes ()
또는 get_attribute_names ()
메서드가없는 것 같습니다.
Python 용 Selenium 모듈 버전 2.44.0을 사용하고 있습니다.
해결 방법
driver.execute_script('var items = {}; for (index = 0; index < arguments[0].attributes.length; ++index) { items[arguments[0].attributes[index].name] = arguments[0].attributes[index].value }; return items;', element)
데모:
>>> from selenium import webdriver
>>> from pprint import pprint
>>> driver = webdriver.Firefox()
>>> driver.get('https://stackoverflow.com')
>>>
>>> element = driver.find_element_by_xpath('//div[@class="network-items"]/a')
>>> attrs = driver.execute_script('var items = {}; for (index = 0; index < arguments[0].attributes.length; ++index) { items[arguments[0].attributes[index].name] = arguments[0].attributes[index].value }; return items;', element)
>>> pprint(attrs)
{u'class': u'topbar-icon icon-site-switcher yes-hover js-site-switcher-button js-gps-track',
u'data-gps-track': u'site_switcher.show',
u'href': u'//stackexchange.com',
u'title': u'A list of all 132 Stack Exchange sites'}
>>> from bs4 import BeautifulSoup
>>> html = element.get_attribute('outerHTML')
>>> attrs = BeautifulSoup(html, 'html.parser').a.attrs
>>> pprint(attrs)
{u'class': [u'topbar-icon',
u'icon-site-switcher',
u'yes-hover',
u'js-site-switcher-button',
u'js-gps-track'],
u'data-gps-track': u'site_switcher.show',
u'href': u'//stackexchange.com',
u'title': u'A list of all 132 Stack Exchange sites'}
참조 페이지 https://stackoverflow.com/questions/27307131
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python : 임의 시스템 시간 시드 (0) | 2020.12.03 |
---|---|
파이썬 지원되지 않는 작업 : 쓰기 불가능한 파이썬 (0) | 2020.12.03 |
파이썬 csv 파일의 N 번째 줄에 액세스하는 가장 좋은 방법 (0) | 2020.12.03 |
파이썬 0으로 나누면 0이됩니다. (0) | 2020.12.03 |
파이썬 word2vec bin 파일을 텍스트로 변환 (0) | 2020.12.03 |
댓글