使用硒扩展动态div

时间:2018-07-19 08:50:34

标签: python selenium selenium-webdriver automation selenium-chromedriver

如何展开每个最初折叠并在点击时扩展的div, 就像给定链接中的那个 Expanding div

我已经使用selenium进行了尝试,方法是使用xpath获取div类,然后单击它,但是问题是有时div被发现两次并再次单击, 所以它再次崩溃,并再次影响它, 我也尝试过睡觉,但是没用

在单击div类之后,也会更改为:

  

djl87 job_listings fbw9 Browse_startups_table_row _a _jm已扩展

while True:
    temp=self.driver.find_element_by_xpath("//div[@class=' djl87 job_listings fbw9 browse_startups_table_row _a _jm']")
    action.move_to_element(temp)
    time.sleep(4)
    action.click() 
    action.perform()
    if(some_cond):
        break

0 个答案:

没有答案