Comment serach pour plusieurs attributs dans Xpath Selenium Python

//*[@attribute_name1='attribute_value1'][@attribute_name2='attribute_value2]  
"""
for example:
	# This One Is A Youtube Video Clicking Xpath But It's Just An Example
	//button[@class="ytp-fullscreen-button ytp-button"][@title="Full screen (f)"]
"""
C0DERFreakZ