我想使用硒登录instagram,但似乎无法在字段中输入值。这是我的脚本:#go to this addressbrowser.get('https://www.instagram.com')#sleep for 1 secondssleep(1)#find the 'login' button on homepagelogin_elem = browser.find_element_by_xpath('//*[@id="react-root"]/section/main/article/div[2]/div[2]/p/a')#navigate to login pagelogin_elem.click()从这里开始遇到麻烦:#locate the username field within the formunform = browser.find_element_by_xpath('//*[@id="f3b8e6724a27994"]')#clear the fieldtextunform.clear()#enter 'test' into fieldunform.send_keys('test')
添加回答
举报
0/150
提交
取消