Changes between Version 8 and Version 9 of autotest
- Timestamp:
- 05/16/2012 04:59:28 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
autotest
v8 v9 77 77 = API使用及其例子 = 78 78 79 - 79 - 解决中文字符问题 80 {{{ 81 require 'rubygems' 82 require 'selenium-webdriver' 83 require 'iconv' 84 class String 85 def to_gbk 86 Iconv.iconv("GBK//IGNORE","UTF-8//IGNORE",self).to_s 87 end 88 end 89 90 91 driver = Selenium::WebDriver.for :ie 92 driver.navigate.to "http://ks.pconline.com.cn/bbs.jsp" 93 #sleep 3 94 95 element = driver.find_element(:name, 'q') 96 element.send_keys "IPhone4S" 97 element.submit 98 99 100 puts "#{driver.title}".to_gbk 101 driver.quit 102 }}}
![(please configure the [header_logo] section in trac.ini)](http://www1.pconline.com.cn/hr/2009/global/images/logo.gif)