Selenium common Actions Examples

1.sendKeys() 在文本框中输入字符串

WebElement searchBox = driver.findElement(By.name("q"));

searchBox.sendKeys("webdriver");

如果希望在文本框中输入某些特殊字符,如Shift,则需要使用webDriver中的Keys类。keys是一个数组类,用于模拟多种不同的特殊按键输入。例如,希望输入字母的大写形式,手工的方式就是按住Shift键的同时输入相应字母即可,示例如下:

WebElement searchBox = driver.findElement(By.name("q"));

searchBox.sendKeys(Keys.chord(Keys.SHIFT,"webdriver"));

2.clear() 清楚文本编辑区域中输入的文本信息

3.submit() 适用于form 或form中的页面元素,提交form 到web 的服务器段

4.isDisplayed() 判断该元素释放在页面上可见

5.isEnabled() 判断该元素释放为启用状态

6.isSelected() 判断某个元素是否被选中

7.getAttribute() 获取当前页面元素的属性

8.getText() 获取元素上的可见文本内容

9.getTagName() 获取元素的tag name

例如,Google搜索按钮的HTML如下,其中input就是搜索按钮的tag name:

<input value = "Google Search" jsaction = "sf.chk" name = "btnk" type = "submit">

10.getCssValue() 获取当前页面元素的CSS 属性信息

11.getLocation() 获取元素在页面上的相对位置,其中坐标系原点位于页面的左上角。改方法的返回值是一个包括(x,y)的左边信息

12.getSize() 获取元素的宽度和高度信息,其返回值是一个包括(width, height)的长宽组合。

时间: 2024-10-29 13:21:08

Selenium common Actions Examples的相关文章

selenium.common.exceptions.ElementNotVisibleException: Message: element not visible处理方法:selenium针对下拉菜单事件的处理

使用Selenium爬虫时,可能会遇到一些下拉菜单,动态加载,如果直接使用find_element_by_函数会报错,显示selenium.common.exceptions.ElementNotVisibleException: Message: element not visible. 意思是element是不可见的.所以无法获取到.这时候就遇到一个难题,怎么把element变成可见的呢? 这时候,我们就用ActionChains来模拟效果 ActionChains(driver).clic

Selenium错误:selenium.common.exceptions.WebDriverException: Message: &quot;Can&#39;t load the profile.

错误描述:在python代码中通过selenium来初始化一个firefox浏览器失败,看了下selenium的版本是2.35,然后用firefox --version看了下是28.0,firefox好像不听话自动升级了导致了旧版selenium不支持. Traceback (most recent call last): File "C:\Python27\erSiteCompare.py", line 528, in sys.exit(main()) File "C:\P

selenium.common.exceptions.TimeoutException: Message: Screenshot: available via screen

在使用selenium+phantomjs的时候在Windows平台下能够正常工作,在Linux下却不能,并得到错误信息: selenium.common.exceptions.TimeoutException: Message: Screenshot: available via screen 在ST上找到答案:http://stackoverflow.com/a/36159299/4447404 driver = webdriver.PhantomJS(service_args=['--ig

selenium.common.exceptions.WebDriverException: Message: Unable to find a matching set of capabilities

环境:Python3+selenium3+Firefox47 在打开火狐浏览器时报错:'geckodriver' executable needs to be in PATH from selenium import webdriver web = webdriver.Firefox() 于是,各种度娘,最终做了如下尝试: 下载了geckodriver-v0.18.0-win64,解压将geckodriver.exe放到火狐浏览器目录下,然后把火狐浏览器目录添加到path环境变量. 结果又出现报

python.错误记录 selenium.common.exceptions.WebDriverException

错误代码: Traceback (most recent call last): browser = webdriver.Chrome('C:\Program Files (x86)\Google\Chrome\Application\chrome.exe') File "D:\Python27\lib\site-packages\selenium\webdriver\chrome\webdriver.py", line 62, in __init__ self.service.sta

python selenium模块使用出错-selenium.common.exceptions.WebDriverException: Message: &#39;geckodriver&#39; executable needs to be in PATH.

Python 2.7+selenium+Firefox 55.0.3 代码: from selenium import webdriver from selenium.common.exceptions import NoSuchElementException from selenium.webdriver.common.keys import Keys import time browser = webdriver.Firefox() # Get local session of firef

【Python + Selenium】初次用IE浏览器之报错:selenium.common.exceptions.WebDriverException: Message: Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones.

初次用IE浏览器运行自动化程序时,报错:selenium.common.exceptions.WebDriverException: Message: Unexpected error launching Internet Explorer. Protected Mode settings are not the same for all zones. Enable Protected Mode must be set to the same value (enabled or disabled

selenium.common.exceptions.WebDriverException: Message: &#39;geckodriver&#39; executable needs to be in PATH.

报这个错查了一下解决方法: 1.使用pip安装selenium,默认安装最新版本,需要到官网上下载与系统相应的最新版本geckodriver:https://github.com/mozilla/geckodriver/releases 2.解压之后把EXE程序放到Python的安装目录下,如果是放在其它目录下需要自己再配一下环境变量,重启IDE 3.如果还没有解决,就把Firefox升级到最新版本 selenium.common.exceptions.WebDriverException: M

【bugRecord2】selenium.common.exceptions.WebDriverException: Message: &#39;geckodriver&#39; executable needs to be in PATH.

环境信息:Windows7 64位 + python 3.6.5 + selenium 3.11.0 +pyCharm 1 #coding=utf-8 2 from selenium import webdriver 3 driver=webdriver.Firefox() 解决方法: 1.下载geckodriver,路径:https://github.com/mozilla/geckodriver/releases 2.解压后无需安装,将其解压路径配置到环境变量PATH [bugRecord2