gpt4 book ai didi

Python:当从单独的文件中提取元素定位器信息时,使用 Webdriver 时为 "__init__() takes 2 positional arguments but 3 were given”

转载 作者:行者123 更新时间:2023-12-01 03:54:09 25 4
gpt4 key购买 nike

我对 Python 和 Selenium 相当陌生,正在尝试对我们的网站进行一些自动化测试。我正在使用页面对象模型设置测试,以便对定位器的更改只需要在一处更新。作为其中的一部分,我正在设置一个函数来等待我们的订阅按钮可点击。但是,当我调用此函数时,出现以下错误:

Traceback (most recent call last):
File "click_subscribe_button_test.py", line 51, in test_subscribe_click
main_page.wait_subscribe_button_clickable()
File "page.py", line 64, in wait_subscribe_button_clickable
wait.until(EC.element_to_be_clickable((*MainPageLocators.subscribe_button)))
TypeError: __init__() takes 2 positional arguments but 3 were given

我在这里和其他网站上阅读了许多相关帖子,虽然它们帮助我更接近解决问题,但我仍然遇到上述错误。相关代码如下,它来自两个单独的文件,因为定位器与页面对象位于不同的文件中。

页面.py

def wait_subscribe_button_clickable(self):
subscribeElement = self.driver.find_element(*MainPageLocators.subscribe_button)
wait = WebDriverWait(self.driver,20)
wait.until(EC.element_to_be_clickable((*MainPageLocators.subscribe_button)))

定位器.py

class MainPageLocators (object):
subscribe_button = (By.CSS_SELECTOR, 'li.last.leaf.subscribe')

问题似乎出在我从单独的文件中提取定位器的方式上,因为如果我更改

wait.until(EC.element_to_be_clickable((*MainPageLocators.subscribe_button)))

wait.until(EC.element_to_be_clickable((By.CSS_SELECTOR, 'li.last.leaf.subscribe')))

代码按预期工作。

我可能不明白 *MainPageLocators.subscribe_button 函数如何拉动定位器,但我无法找出问题所在。

任何帮助或指导将不胜感激。

最佳答案

只是根本不解压定位器,将其作为元组按原样传递:

wait.until(EC.element_to_be_clickable(MainPageLocators.subscribe_button))

关于Python:当从单独的文件中提取元素定位器信息时,使用 Webdriver 时为 "__init__() takes 2 positional arguments but 3 were given”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37794898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com