码迷,mamicode.com
首页 >  
搜索关键字:switchto    ( 35个结果
webDriver中的alert
driver.switchTo().alert();这句可以得到alert\confirm\prompt对话框的对象,然后运用其方法对它进行操作。对话框操作的主要方法有:getText() 得到它的文本值accept() 相当于点击它的"确认"dismiss() 相当于点击"取消"或者叉掉对话框se...
分类:Web程序   时间:2015-03-11 16:39:22    阅读次数:153
Ubuntu user switch
To list all users you can use:cut -d: -f1 /etc/passwdTo add a new user you can use:sudo adduser new_usernameTo remove/delete a user, first you can use...
分类:其他好文   时间:2014-09-20 23:51:19    阅读次数:325
selenium处理rich text(富文本框)
WordPress 的 rich text采用js,先让selenium切换到iframe中driver.switchTo().frame("content_ifr");然后执行JSWebElement editor = driver.findElement(By.tagName("body"));...
分类:其他好文   时间:2014-08-31 00:25:30    阅读次数:374
Selenium - IWebDriver.SwitchTo() frame 和 Window 的用法
IWebDriver.SwitchTo().Frame(IWebElement frame)如果一个页面是一个html元素, 只有一个head, 一个body, 那么使用IWebDriver.FindElement()查找页面中的任何一个元素都没有问题。但是,由于页面中 frames = drive...
分类:Windows程序   时间:2014-08-22 12:11:56    阅读次数:384
[Selenium]对弹出的Alert窗口进行操作
Alert alert = driver.switchTo().alert();alert.accept();
分类:其他好文   时间:2014-06-11 13:05:22    阅读次数:169
35条   上一页 1 2 3 4
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!