如何在selenium webdriver中使用变量通过xpath查找元素?

时间:2013-06-20 20:18:05

标签: python webdriver

所以我有一个名为folder的变量,其中包含我随机生成的字符串。我想使用xpath按名称查找此文件夹,我不知道如何将其付诸行动

driver.find_element_by_xpath('//div[text()="variable"]')

其中variable包含随机化文本。使用sql就像这样(select * from table where value =(?)),[variable] ...或者类似的东西

1 个答案:

答案 0 :(得分:10)

试试这个:

driver.find_element_by_xpath('//div[text()="%s"]' % variable)