File "<ipython-input-139-8fe271de9522>", line 16 if browser.find_element_by_xpath(a3).text==i1["组织编码"] and browser.find_element_by_xpath(a5).text==i1["商品编码"]and browser.find_element_by_xpath(a6).get_attribute('value') ==str(i1["原进价含税"])and browser.find_element_by_xpath(a7).text====str(i1["现进价含税"]): ^ SyntaxError: invalid syntax
时间: 2024-01-11 19:05:51 浏览: 68
read-and-show-color-image.rar_show_site:www.pudn.com_spyder read
在你的代码中,第16行有一个语法错误。在使用`browser.find_element_by_xpath(a7).text`时,你在等于符号前面多打了一个等于符号,导致语法错误。你需要将这个符号删除并重新运行代码。正确的代码应该是这样的:
```
if browser.find_element_by_xpath(a3).text == i1["组织编码"] and browser.find_element_by_xpath(a5).text == i1["商品编码"] and browser.find_element_by_xpath(a6).get_attribute('value') == str(i1["原进价含税"]) and browser.find_element_by_xpath(a7).text == str(i1["现进价含税"]):
```
阅读全文