I am trying select date with date no. url:http://www.szse.cn/disclosure/bond/notice/index.html I am trying: for the start month & date,
wait.until(EC.element_to_be_clickable((By.XPATH, "//ul[@class='monthselect'][1]//li[text()='{}']".format("1")))).click()
wait.until(EC.element_to_be_clickable((By.XPATH, "(//table[@class='table-condensed'])[1]//tbody/div[@class='tdcontainer' and contains(text()='15')]"))).click()
I can go with like tr[2]//td[3] but I want just use the date no. like 1,2,3..
Many thanks!!