所以我有一个名为folder的变量,其中包含我
随机生成的字符串.我想使用xpath按
名称查找此
文件夹,我不知道如何将其付诸实践
driver.find_element_by_xpath('//div[text()="variable"]')
其中变量包含随机文本.使用sql就像这样(select * from table where value =(?)),[variable] …或类似的东西
试试这个:
driver.find_element_by_xpath('//div[text()="%s"]' % variable)
原文链接:https://www.f2er.com/python/185794.html