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.
有没有办法使用 webdriver 按字母顺序从表中获取数据。
例如:
一个表包含“sno、语言、文本、链接”
我想知道是否可以使用语言作为列按字母顺序获取数据。假设语言不是按字母顺序排列的……俄语、西班牙语、英语、中文……等等
是的,您需要一个 DataStructure 来存储在查找表元素时列出的 WebElement。
对于 Java,您可以使用 HashMap 之类的 DataStructure,您可以在其中将链接文本保存为 Key,稍后您可以使用 Collection.sort 使用所需的属性/列对该 DataStructure 进行排序。