我想尽可能保持我的选择器简单,并且只在绝对必要的情况下使用 XPath。因此,而不是等待一个XPath像//*[@class='files']/tbody/tr[1]/th[text()='filename']
我宁愿要等待组合的简单的CSS选择器.files tbody tr:first-child
和简单的XPath th[text()='filename']
。
presence_of_element_located
只需要一个定位器,所以presence_of_element_located((By.CSS_SELECTOR, '.files tbody tr:first-child'), (By.XPATH, 'th[text()='filename']'))
出来了。
我也不能链接这些函数,所以presence_of_element_located((By.CSS_SELECTOR, '.files tbody tr:first-child')).presence_of_element_located((By.XPATH, 'th[text()='filename']'))
不起作用。
相关分类