0
先用函數的結果,我想放置PSW變量==>在高清TEST_1/.send_keys()我怎麼可以在其他功能
def random_list():
psw = ''
for x in range(12):
psw = psw + random.choice(list('123456789qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM'))
return psw
def test_1(driver):
driver.find_element_by_xpath("//form//a").click()
driver.find_element_by_xpath("//input[@name='tax_id']").send_keys(random_list)
您需要調用該函數。所以'driver.find_element_by_xpath(「//輸入[@ name ='tax_id']」)。send_keys(random_list())' –
謝謝,作品!!! –
@YevhenKuzmovych在像我這樣的清道夫之前把它放在答案中。哈哈。 – AER