我试图弄清楚这段代码在做什么。这是我的新工作,我没有人问,最后一个自动化Qa改变了项目,我没有与他联系。这就是我想要了解的内容,它非常清晰,但我得不到.location()部分:
WebDriverWait(self.selenium,self.timeout).until(ec.presence_of_element_located(self._check_out_button))
chk_button = self.selenium.find_element(*self._check_out_button)
if self.browser == "CHROME":
y = chk_button.location["y"]
self.selenium.execute_script("window.scrollTo(0, " + str(y) + ");")
WebDriverWait(self.selenium, self.timeout).until(ec.presence_of_element_located(self._check_out_button))
chk_button.click()
我不明白它的位置(“y”)是什么。
这就是
谢谢