我有这个代码:
tcost = driver.find_element_by_id("MainContent_txtTotalCost").text
total = int(tcost)
driver.find_element_by_id("MainContent_txtVisa").send_keys(total/2)
driver.find_element_by_id("MainContent_txtCash").send_keys(total/2)
它抛出这个错误:
ValueError: int() 以 10 为底的无效文字:''
我需要text
在文本框中进行转换以int
对其进行一些计算,当然,如果您对增强代码有任何建议,请执行。