我试图点击此按钮移动到登录页面。 我的代码是:
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('http://moodle.tau.ac.il/')
这很好但我只能通过
找到表格loginform = driver.find_element_by_xpath("//form[@id='login']/")
我不知道怎么去按钮,这是非常基本的东西,但我没有找到任何好的例子。
答案 0 :(得分:1)
页面有两个相同的登录表单,XPath返回隐藏的表单。 所以有了可见的:
from selenium import webdriver
driver = webdriver.Chrome()
driver.get(r"http://moodle.tau.ac.il/")
driver.find_element_by_css_selector("#page-content #login input[type=submit]").click()
或者使用XPath:
from selenium import webdriver
driver = webdriver.Chrome()
driver.get(r"http://moodle.tau.ac.il/")
driver.find_element_by_xpath("id('page-content')//form[@id='login']//input[@type='submit']").click()
答案 1 :(得分:1)
这将点击moodle.tau.ac.il页面上的登录按钮。
第driver.find_element_by_xpath(".//*[@id='login']/div/input").click()
行找到页面上的登录按钮并单击它。 Xpath只是一种选择器类型,您可以使用selenium在页面上查找Web元素。您还可以使用ID,classname和CSSselectors。
from selenium import webdriver
driver = new webdriver.Chrome()
driver.get('moodle.tau.ac.il')
# This will take you to the login page.
driver.find_element_by_xpath(".//*[@id='login']/div/input").click()
# Fills out the login page
elem = driver.find_element_by_xpath("html/body/form/table/tbody/tr[2]/td/table/tbody/tr[1]/td[2]/input")
elem.send_keys('Your Username')
elem = driver.find_element_by_xpath("html/body/form/table/tbody/tr[2]/td/table/tbody/tr[3]/td[2]/input")
elem.send_keys('Your ID Number')
elem = driver.find_element_by_xpath("html/body/form/table/tbody/tr[2]/td/table/tbody/tr[1]/td[2]/input")
elem.send_keys('Your Password')
driver.find_element_by_xpath("html/body/form/table/tbody/tr[2]/td/table/tbody/tr[7]/td[2]/input").click()
答案 2 :(得分:-1)
您可以使用@ChrisP
中提到的XPath找到它您可以通过CSS选择器找到它:“#login input [type ='text']”
或者您也可以只提交表单... loginForm.submit()
理想情况下,您可以使用该按钮的唯一ID,以便于查找。