各位有没有遇到过使用WebElement的screenshot方法后,ActionChains不起作用了

例子如下:
action_chains = ActionChains(self.driver)
element = self.driver.find_element_by_css_selector('xx')
element.screenshot('file')
action_chains.send(Keys.ENTER)
action_chains.perform()
有时使用screenshot方法后,后面的perform就不起作用了,为什么呢