我需要以下帮助。如何从页面中搜索此对象(Node_ID =" 3857511")并将值存储在变量中并重新使用它以进行测试以按ID搜索对象。
请帮忙。
答案 0 :(得分:0)
从search
页面中的Java
对象(Node_ID =" 3857511")并将值存储在变量中,您可以使用以下代码行:
<强> String my_id = driver.findElement(By.xpath("//div[@class='idea boundarynode nodeyellow textnode ui-droppable ui-draggable ui-draggable-handle")).getAttribute("node_id");
强>
Python
<强> myID = driver.find_element_by_xpath("//div[@class='idea boundarynode nodeyellow textnode ui-droppable ui-draggable ui-draggable-handle").get_attribute("node_id")
强>
C#
<强> string myId = driver.FindElement(By.XPath("//div[@class='idea boundarynode nodeyellow textnode ui-droppable ui-draggable ui-draggable-handle")).GetAttribute("node_id");
强>
DataContract