Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个名为文件夹的变量,其中包含我随机生成的字符串。我想使用 xpath 按名称查找此文件夹,但我不知道如何将其付诸实施
driver.find_element_by_xpath('//div[text()="variable"]')
其中变量包含随机文本。使用 sql 它会是这样的(从表中选择 * 值 =(?)),[变量] ...或类似的东西
尝试这个:
driver.find_element_by_xpath('//div[text()="%s"]' % variable)