Python Selenium-检查一个WebElement是否等于另一个WebElement

时间:2019-08-06 09:38:07

标签: python selenium selenium-webdriver webdriver getattribute

如何比较两个硒WebElement以查看它们是否相同?

首先,我检索input_fieldsfirst_input元素的列表:

self.input_fields = driver.find_elements(By.CLASS_NAME, class_name) self.first_input = driver.find_element(By.ID, id)

然后,我尝试检查input_fields[0]first_input是否是相同的WebElement。

if self.first_input is not self.input_fields[0]:
    self.__log.warning("WebElement first_input : {} != {}".format(self.first_input, self.input_fields[0]))

尽管sessionelement相同,但无论如何都会触发警告消息。

WARNING  - WebElement first_input: <selenium.webdriver.remote.webelement.WebElement (session="796bf0bcf3e0df528ee932d477951689", element="94a2ee62-9511-45e5-8aa3-bd3d3e9be309")> != <selenium.webdriver.remote.webelement.WebElement (session="796bf0bcf3e0df528ee932d477951689", element="94a2ee62-9511-45e5-8aa3-bd3d3e9be309")>

2 个答案:

答案 0 :(得分:3)

编辑: 使用!=代替is not可以解决所有问题:

if self.first_input != self.input_fields[0]:

解决方案

if self.first_input.id == self.input_fields[0].id:
    self.__log.info("Same element {} , {}".format(self.first_input.id, self.input_fields[0].id))

阅读文档后,我发现了id属性,该属性的definition用作私有属性_id的吸气剂

@property
def id(self):
    """Internal ID used by selenium.

    This is mainly for internal use. Simple use cases such as checking if 2
    webelements refer to the same element, can be done using ``==``::

        if element1 == element2:
            print("These 2 are equal")

    """
    return self._id

source

class WebElement(object):
    def __init__(self, parent, id_, w3c=False):
        self._parent = parent
        self._id = id_
        self._w3c = w3c

注意:

print("{}".format(self.first_input.id))

为我们提供与在对象中看到的元素ID相同的元素ID。

94a2ee62-9511-45e5-8aa3-bd3d3e9be309

答案 1 :(得分:0)

比较WebElement应该可以工作,打印first_elementinput_fields[0] id 进行检查。另外,打印input_fields的所有 id ,以检查是否存在具有相同ID的重复元素。

作为一种选择,您可以尝试比较两个元素source的完整CSS路径。

script = """
function fullPath(element){
  var names = [];
  while (element.parentNode) {
      if (element==element.ownerDocument.documentElement) names.unshift(element.tagName);
      else{
        for (var i=1, e=element; e.previousElementSibling; e=e.previousElementSibling,i++);
        names.unshift(element.tagName+":nth-child("+i+")");
      }
      element=element.parentNode;
  }
  return names.join(" > ");
}
return fullPath(arguments[0]);
"""

first_input_full_path = driver.execute_script(script, self.first_input)
another_input_full_path = driver.execute_script(script, self.input_fields[0])

if first_input_full_path == another_input_full_path:
    self.__log.warning("WebElement first_input : {} != {}".format(self.first_input, self.input_fields[0]))