def textfield(boxid,textadded):
project = driver.find_element_by_id(boxid)
project.send_keys(textadded)
sleep(3)
def dropdown(dropdownid, dropdownvalue):
select = Select(driver.find_element_by_id(dropdownid))
select.select_by_visible_text(dropdownvalue)
sleep(5)
These 2 functions are functional however i'm using sleep()
which is a bad practice since some my drop-downs and text fields will take longer than others to fill so i have to put the longest sleep value not to get errors, how can i fix these 2 functions using wait.
You should use WebDriverWait!
You can use
presence_of_all_elements_located
on the list of select items...An example:
Hope this helps!
As you are invoking
send_keys()
on the WebElement project, ideally you should invoke WebDriverWait with EC aselement_to_be_clickable
, so you have to:Replace:
with:
As the drop-down take longer to fill so you should invoke WebDriverWait with EC as
visibility_of_element_located
, so you have to:Replace:
with:
Note : You have to add the following imports :
You can explicitly wait for the element. Read more about waits here. Please note that this is not the official documentation.