如何使用Selenium和Python根据用户输入查找元素?

如何使用Selenium和Python根据用户输入查找元素?,第1张

如何使用Selenium和Python根据用户输入查找元素

要根据用户使用Selenium和python的输入来定位元素,您需要为引入WebDriverWait,

visibility_of_element_located()
并且您可以使用以下两种定位器策略之一:

  • 在中使用变量
    XPATH
        user_input = '23456'    element = WebDriverWait(driver, 20).until(EC.visibility_of_element_located((By.XPATH, "//div[@]//div/p[@ and text()='" +user_input+ "']")))
  • %s
    在中使用
    XPATH
        user_input = '23456'    element = WebDriverWait(driver, 20).until(EC.visibility_of_element_located((By.XPATH, "//div[@]//div/p[@ and text()='%s']"% str(user_input))))
  • format()
    在中使用
    XPATH
        user_input = '23456'    element = WebDriverWait(driver, 20).until(EC.visibility_of_element_located((By.XPATH, "//div[@]//div/p[@ and text()='{}']".format(str(user_input)))))
  • 注意 :您必须添加以下导入:
        from selenium.webdriver.support.ui import WebDriverWait    from selenium.webdriver.common.by import By    from selenium.webdriver.support import expected_conditions as EC


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5586120.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-14
下一篇 2022-12-14

发表评论

登录后才能评论

评论列表(0条)

保存