I have this code:
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)
It throws this error:
ValueError: invalid literal for int() with base 10: ''
I need to convert text
in text box to int
to do some calculations over it and sure, If you have any suggestions to enhance the code please do.
alecxe
11.4k11 gold badges52 silver badges107 bronze badges
asked Oct 16, 2012 at 11:02
-
The int function should convert a valid string to an integer. Why do you think it fails? Have you tried printing/logging the string?user246– user2462012年10月16日 11:35:28 +00:00Commented Oct 16, 2012 at 11:35
-
What language - Java ?Phil Kirkham– Phil Kirkham2012年10月16日 11:35:50 +00:00Commented Oct 16, 2012 at 11:35
-
@phil python languageengy– engy2012年10月16日 11:40:21 +00:00Commented Oct 16, 2012 at 11:40
-
@user246 i tried print(tcost),it should print the value of the text box in the IDLE i'm using right?!,as it gave new empty line only and then >>> for next actionsengy– engy2012年10月16日 11:43:18 +00:00Commented Oct 16, 2012 at 11:43
1 Answer 1
You may need to use .get_attribute("value")
. instead of .text
.
answered Oct 16, 2012 at 12:09
user246user246
default