halemorning 发表于 2023-4-27 19:08:13

定义了一个功能函数,返回值怎么也取不到

如下代码,运行中,if elif else之中,只有else时将wancheng变成True,但是实际中,wancheng却一直True

def minhpcure():
    global one,two,three,four,five,wancheng
    driver.execute_script('useCut(2);')
    sleep(0.5)
    a1 = driver.find_element(By.ID,'zhiLiaoSel').is_displayed()
    a2 = driver.find_element(By.ID, 'castWin').get_attribute('style')
    if a1:
      min_values = []
      for i in range(1, 6):
            try:
                in1 = driver.find_element(By.XPATH, f'/html/body/mw/con/table/tbody/tr[{i}]/td').get_attribute(
                  'textContent')
                in1 = in1
                value = eval(in1)
                min_values.append((i, value))
            except:
                pass

      if min_values:
            min_item = min(min_values, key=lambda x: x)
            min_index = min_item
            a = driver.find_element(By.XPATH, f'/html/body/mw/con/table/tbody/tr[{min_index}]').get_attribute(
                'onclick')
            driver.execute_script(f'{a}')
            bskill()
            wancheng = False
    elif a2.find('99999'):
         sleep(2.35)
         wancheng = False
    else:wancheng = True
    return wancheng


      while 判断战():
            minhpcure()
            while not minhpcure():
                minhpcure()

isdkz 发表于 2023-4-27 19:13:37

在您的代码中,`wancheng` 变量的值会在每次调用 `minhpcure()` 函数时根据条件进行更新。根据您的描述,似乎 `wancheng` 的值一直为 `True`,这可能是因为 `a1` 和 `a2.find('99999')` 都不满足条件,所以 `else` 分支被执行了。

在给定的代码中,我发现一个可能的问题是 `a2.find('99999')`。`str.find()` 函数返回的是子字符串在原字符串中第一次出现的索引,如果没有找到子字符串,则返回 `-1`。这里,您应该检查 `a2.find('99999')` 的返回值是否不等于 `-1`。所以,您需要将其更改为 `a2.find('99999') != -1`。

修改后的代码:

def minhpcure():
    global one, two, three, four, five, wancheng
    driver.execute_script('useCut(2);')
    sleep(0.5)
    a1 = driver.find_element(By.ID, 'zhiLiaoSel').is_displayed()
    a2 = driver.find_element(By.ID, 'castWin').get_attribute('style')
    if a1:
      # ... (省略其他代码)
      wancheng = False
    elif a2.find('99999') != -1:
      sleep(2.35)
      wancheng = False
    else:
      wancheng = True
    return wancheng


while 判断战():
    minhpcure()
    while not minhpcure():
      minhpcure()


另外,请确保其他条件能够正确地执行。如果在实际使用过程中仍然出现问题,请提供更多关于问题的上下文,以便我们更好地帮助您。

halemorning 发表于 2023-4-27 19:24:01

isdkz 发表于 2023-4-27 19:13
在您的代码中,`wancheng` 变量的值会在每次调用 `minhpcure()` 函数时根据条件进行更新。根据您的描述,似 ...

谢谢大佬,就是您指出的这个问题导致的,现在修改好,已经测试完成了
页: [1]
查看完整版本: 定义了一个功能函数,返回值怎么也取不到