如何填写Chrome浏览器本身生成的文本框?

时间:2019-06-19 22:49:44

标签: python selenium google-chrome browser automation

我无法弄清楚如何填写由chrome浏览器本身生成的表单,因为我无法检查表单的任何元素,因此我不知道要传递给“ find_element_by_name”的值是什么。

这是浏览器生成的文本框: enter image description here

我已经尝试使用类似driver.send_keys('myusername')的方法,但是那没有用。

这是我用来启动浏览器的代码段:

<Login>:
    name: 'login'
    GridLayout:
        cols:2
        TextInput:
            id:txt_usr
        Label:
            text:'Senha'
        TextInput:
            id:txt_pass
        Button:
            text: ' Entrar'
            on_release:
                app.attempt_login(txt_usr.text, txt_pass.text)

0 个答案:

没有答案