如何为此找到Xpath?
<div class="_7UhW9 xLCgt qyrsm h_zdq fDxYl T0kll ">Continue as dsfshhfh</div>
我尝试了这个,但是这不起作用。班级没有得到实际的结果。
driver.find_element_by_xpath("//div[@class="_7UhW9 xLCgt qyrsm h_zdq fDxYl T0kll "]").click()
答案 0 :(得分:0)
您的类名属性必须是动态的。尝试使用以下xpath来单击()
driver.find_element_by_xpath("//div[contains(.,'Continue as')]").click()