Может ли кто-нибудь рассказать мне об ошибке ниже, которую я получаю при запуске моего теста

#python

Вопрос:

Это ошибка, которую я получаю: Синтаксическая ошибка: !!ПРИ ИМПОРТЕ!! несоответствующий ввод «def», ожидающий ОТСТУПА (cancel_receipt.py, строка 17)

Полный стек ошибок приведен ниже:

 [error] script [ full_RT_test_run ] stopped with error at line --unknown--
[error] Error caused by: Traceback (most recent call last): File "C:UsersAdministratorDesktopSikulion till regression testfull_RT_test_run.sikulifull_RT_test_run.py", line 3, in <module> import cancel_receipt File "C:UsersAdministratorAppDataRoamingSikulixLibsikuliSikuliImporter.py", line 45, in load_module return self._load_module(module_name) File "C:UsersAdministratorAppDataRoamingSikulixLibsikuliSikuliImporter.py", line 34, in _load_module return imp.load_module(fullname, file, pathname, desc) File "<string>", line None SyntaxError: !!WHILE IMPORTING!! mismatched input 'def' expecting INDENT (cancel_receipt.py, line 17)
 

Это мой класс cancel_receipt:

 import general_buttons
import general_functions
import globals
import gui_screens
import error_handling

from sikuli import *

global process_name
process_name = 'Cancel Receipt'


global four_eyes_test
four_eyes_test = 0

def cancel_receipt():
def cancel_receipt():
    globals.current_process_name = process_name
    general_functions.errorhandling("ABORT")
    general_functions.extended_wait(['main_page_key_pad'], globals.very_long_wait, 0)
    general_functions.start_of_test_case('CANCEL RECEIPT TEST CASES')

    x = 0
    # THIS NEEDS TO BE READ FROM THE CUSTOMIZATION FILE
    while x < 3:

        # wait for the main screen to be there
        general_functions.extended_wait(['main_page_key_pad'], globals.very_long_wait, 0)

        # if it's the regression test get the number of articles specified in te test settings
        general_functions.fill_basket(globals.general_articles[0][4], 1)

        if x == 0:  # cancel before the total button is clicked
            general_functions.start_of_test_case('TC cancel receipt before total button is clicked')
            receipt_meta_data_array = general_functions.get_receipt_meta_data()
            general_buttons.main_page_key_pad_btns_click('CANCEL')
        else: # cancel after the total button is clicked
            # click TOTAL button
            general_buttons.main_page_key_pad_btns_click('TOTAL')
            general_functions.start_of_test_case('TC cancel receipt after total button is clicked')
            receipt_meta_data_array = general_functions.get_receipt_meta_data()
            # this is actually the CANCEL TRANSACTION button but it's in the same location as the CANCEL button
            general_buttons.main_page_key_pad_btns_click('CANCEL')

        general_functions.four_eyes_enhanced(globals.users[2], globals.users
 

И это начало моего full_RT_test_run.py

 import init
import basic_sale
import cancel_receipt
import commission_sale
import drop_off
 

Ответ №1:

У вас есть повторяющаяся строка:

 def cancel_receipt():
def cancel_receipt():
 

Также обратите внимание, что на самом деле это не класс, а модуль.

Комментарии:

1. О боже, как глупо с моей стороны, просто не заметил .. большое спасибо 🙂