Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.1k views
in Technique[技术] by (71.8m points)

selenium - What is the element name of Google search button?

I am now using Selenium & Ruby to take a screenshot automatically, however, I cannot find the element name from the developer tool. How can I click "search" on google?

The code below has an error which is

no such element: Unable to locate element: {"method":"css selector","selector":"*[name='btnG']"} (Selenium::WebDriver::Error::NoSuchElementError) (Session info: chrome=87.0.4280.141)

I have tried

submitElement = driver.find_element(:name, 'svg') submitElement = driver.find_element(:class, 'FAuyhb')

But did not work.

photo1


require "selenium-webdriver"

driver = Selenium::WebDriver.for :chrome

driver.navigate.to "https://www.google.co.jp/imghp"

inputElement = driver.find_element(:name, 'q')

inputElement.send_keys "iPhone11"

submitElement = driver.find_element(:name, 'btnG')


submitElement.click

driver.save_screenshot('tabetai.png')

driver.quit

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try this xpath:

//button[@type='submit']

Use this line

driver.find_element(:xpath => "//button[@type='submit']")

For the search icon in image search.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...