Skip to content

Instantly share code, notes, and snippets.

@allatambov
Created March 22, 2022 15:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save allatambov/a0c515b0d2360544d117b70f147371ae to your computer and use it in GitHub Desktop.
Save allatambov/a0c515b0d2360544d117b70f147371ae to your computer and use it in GitHub Desktop.
city = br.find_element_by_id("cCity")
city_inp = city.find_element_by_tag_name("input")
city_inp.send_keys("Москва")
br.implicitly_wait(1.5)
city_inp.send_keys(Keys.RETURN)
sex = br.find_element_by_id("cSex")
values = sex.find_elements_by_tag_name("div")
values
values[1].click()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment