본문 바로가기
파이썬

파이썬 Selenium 웹 드라이버 : 요소의 모든 속성을 어떻게 찾습니까?

by º기록 2020. 12. 3.
반응형

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

 

 

반응형

댓글