Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
899 views
in Technique[技术] by (71.8m points)

Python Object of type WebElement is not JSON serializable

I want convert dict to json using json.dumps but i have problem with WebElement.

I got TypeError: Object of type WebElement is not JSON serializable

This my example code :

def x():
  p = {'a':'a','b':driver.find_element(By.XPATH, xpath)}
  return p
dict = x()
print(json.dumps(dict))

I want convert json except WebElement but without modify x function.

question from:https://stackoverflow.com/questions/65890779/python-object-of-type-webelement-is-not-json-serializable

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...