51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1334|回复: 2
打印 上一主题 下一主题

Pytest突然报错error,argument -k:expected one argument,如何解决?

[复制链接]
  • TA的每日心情
    无聊
    4 天前
  • 签到天数: 530 天

    连续签到: 2 天

    [LV.9]测试副司令

    跳转到指定楼层
    1#
    发表于 2022-10-9 09:08:02 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
    1测试积点
    写了一个正常的pytest测试用例,昨天还可以正常运行,今天突然就报这个错误了
    我是先创建一个含有测试类和测试方法的py文件,然后再创建一个all.py文件用来操作测试方法,然后运行前者就什么都没有,运行后者就会报这个错误
    这是测试第一个文件
    import selenium
    from selenium import webdriver
    from selenium.webdriver.common.by import By
    import pytest
    import time

    class Testforum:
        def setup(self):
            self.driver = webdriver.Chrome()
            self.driver.get('https://ceshiren.com/')
        def test_a(self):
            self.driver.find_element(By.ID, 'create-topic').click()
            self.driver.implicitly_wait(2)
            self.driver.find_element(By.ID, 'reply-title').send_keys("霍格沃兹测试学院")
            self.driver.implicitly_wait(2)
            self.driver.find_element('xpath','/html/body/section/div/div[6]/div[3]/div[2]/div/div/div[1]/div[1]/div/div[2]/details/summary/div').click()
            self.driver.implicitly_wait(2)
            self.driver.find_element(By.ID, 'ember837').click()
            self.driver.implicitly_wait(2)
            self.driver.find_element(By.ID, 'ember525').click()
            self.driver.implicitly_wait(2)
            self.driver.find_element(By.ID, 'ember525').send_keys("这是一个论坛发帖测试")
            self.driver.implicitly_wait(2)
            self.driver.find_element('xpath', '/html/body/section/div/div[6]/div[3]/div[3]/div/button/span').click()
        def teardown(self):
            self.driver.implicitly_wait(5)
            self.driver.quit()

    这是第二个文件

    import pytest
    if __name__ == '__main__':
        pytest.main(["-vs","./test_shizhan.py"])

    运行结果及报错内容

    1. ERROR: usage: exercise_all.py [options] [file_or_dir] [file_or_dir] [...]
    2. exercise_all.py: error: argument -k: expected one argument (via addopts config)
    复制代码

    尝试过的方法
    1.重启Pycharm编译器
    2.修改pytest.ini文件的编码为ANSI
    3.重新创建了一个python环境并下载相应的软件包
    4.将python解释器换为新创建的环境

    我想要达到的结果

    能够成功运行,不报这种奇葩错误,希望各位能帮忙解答一下,求!


    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

  • TA的每日心情
    奋斗
    昨天 10:15
  • 签到天数: 756 天

    连续签到: 1 天

    [LV.10]测试总司令

    2#
    发表于 2022-10-10 11:08:40 | 只看该作者
    检查下这个应用是否放在含有中文的路径下
    回复

    使用道具 举报

  • TA的每日心情
    奋斗
    前天 07:50
  • 签到天数: 2818 天

    连续签到: 6 天

    [LV.Master]测试大本营

    3#
    发表于 2022-10-10 15:44:53 | 只看该作者
    文件或者环境有变化
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-25 03:42 , Processed in 0.060986 second(s), 21 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表