51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2103|回复: 6
打印 上一主题 下一主题

Selenium3.0 测试百度网页运行出问题求解答

[复制链接]
  • TA的每日心情

    2024-5-20 21:29
  • 签到天数: 996 天

    连续签到: 1 天

    [LV.10]测试总司令

    跳转到指定楼层
    1#
    发表于 2017-6-15 15:46:45 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
    package com.example.tests;
    import org.openqa.selenium.By;
    import org.openqa.selenium.WebDriver;
    import org.openqa.selenium.WebElement;
    import org.openqa.selenium.firefox.FirefoxDriver;

    import com.sun.org.apache.xerces.internal.impl.xpath.XPath;

    public class Demo {

            public static void main(String[] args){
                    System.setProperty("webdriver.gecko.driver","C:\\Program Files (x86)\\Mozilla Firefox\\webdriver\\geckodriver.exe");
                    WebDriver driver=new FirefoxDriver();
                    driver.get("http://www.baidu.com");
                System.out.println("Page title is :"+driver.getTitle());
                //WebElement username=driver.findElement(By.xpath("//form/div[1]/input[@id='lgn_txt_username']"));
                WebElement Text=driver.findElement(By.xpath("html/body/div[2]/div[1]/div/div[1]/div/form/span[1]/input"));
                Text.clear();
                Text.sendKeys("abc");
                //username.sendKeys("admin");

            }
    }
    只想在百度输入框内 输入abc但是Eclipse运行此断代码就报错。
    只能打开百度页面不能执行输入操作。

    下面试Eclipse中运行Console中的信息

    1497512421381        geckodriver        INFO        Listening on 127.0.0.1:30863
    六月 15, 2017 3:40:21 下午 org.openqa.selenium.remote.ProtocolHandshake createSession
    信息: Attempting bi-dialect session, assuming Postel's Law holds true on the remote end
    1497512421978        mozprofile::profile        INFO        Using profile path C:\Users\ADMINI~1\AppData\Local\Temp\rust_mozprofile.PKQFmN5A8CRE
    1497512421982        geckodriver::marionette        INFO        Starting browser C:\Program Files (x86)\Mozilla Firefox\firefox.exe
    1497512421990        geckodriver::marionette        INFO        Connecting to Marionette on localhost:63668
    1497512424910        Marionette        INFO        Listening on port 63668
    [GPU 10336] WARNING: pipe error: 109: file c:/builds/moz2_slave/m-rel-w32-00000000000000000000/build/src/ipc/chromium/src/chrome/common/ipc_channel_win.cc, line 346
    六月 15, 2017 3:40:25 下午 org.openqa.selenium.remote.ProtocolHandshake createSession
    信息: Detected dialect: W3C
    Page title is :百度一下,?就知道
    Exception in thread "main" org.openqa.selenium.InvalidArgumentException: Expected [object Undefined] undefined to be a string
    Build info: version: 'unknown', revision: '1969d75', time: '2016-10-18 09:43:45 -0700'
    System info: host: '13K2G_wangchunpeng', ip: '10.241.36.187', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_131'
    Driver info: org.openqa.selenium.firefox.FirefoxDriver
    Capabilities [{moz:profile=C:\Users\ADMINI~1\AppData\Local\Temp\rust_mozprofile.PKQFmN5A8CRE, rotatable=false, timeouts={implicit=0, pageLoad=300000, script=30000}, pageLoadStrategy=normal, platform=ANY, specificationLevel=0, moz:accessibilityChecks=false, acceptInsecureCerts=false, browserVersion=53.0.3, platformVersion=10.0, moz:processID=520, browserName=firefox, platformName=windows_nt}]
    Session ID: 24f372f7-6351-4d8b-9c2f-91e082353358
            at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
            at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
            at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
            at java.lang.reflect.Constructor.newInstance(Unknown Source)
            at org.openqa.selenium.remote.http.W3CHttpResponseCodec.createException(W3CHttpResponseCodec.java:127)
            at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:93)
            at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:42)
            at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:163)
            at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:82)
            at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:601)
            at org.openqa.selenium.remote.RemoteWebElement.execute(RemoteWebElement.java:274)
            at org.openqa.selenium.remote.RemoteWebElement.sendKeys(RemoteWebElement.java:98)
            at com.example.tests.Demo.main(Demo.java:19)



    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

  • TA的每日心情
    开心
    2016-4-5 08:14
  • 签到天数: 8 天

    连续签到: 1 天

    [LV.3]测试连长

    7#
    发表于 2017-7-17 16:16:33 | 只看该作者
    环境问题有时真的很头疼
    回复 支持 反对

    使用道具 举报

  • TA的每日心情

    2024-5-20 21:29
  • 签到天数: 996 天

    连续签到: 1 天

    [LV.10]测试总司令

    6#
     楼主| 发表于 2017-6-16 10:26:45 | 只看该作者
    感谢大家的积极回复。问题已经解决。
    解决办法:
    Selenium由之前的3.0.1更新为3.4.0
    Firefor的驱动有geckodriver由之前的0.13.0更新到0.17.0
    更新以后上述问题不再发生。
    看selenium日志,导致问题的原因是geckodriver上的问题。

    当前环境下正常运行:
    Selenium3.4.0
    geckodriver0.17.0
    FireFox53.0.3(x86)
    OS:Win 10 x64 CN
    Eclipse4.6
    回复 支持 反对

    使用道具 举报

  • TA的每日心情

    2024-5-20 21:29
  • 签到天数: 996 天

    连续签到: 1 天

    [LV.10]测试总司令

    5#
     楼主| 发表于 2017-6-16 09:16:30 | 只看该作者
    finomy 发表于 2017-6-15 16:22
    它说object undefined 看看‘’Text‘’中的内容对不对,判断下获取的元素对不对

    害怕因为定位不对会有问题。 所以Xpath上没有更改。直接firepath获取下来的路径。
    回复 支持 反对

    使用道具 举报

  • TA的每日心情

    2024-5-20 21:29
  • 签到天数: 996 天

    连续签到: 1 天

    [LV.10]测试总司令

    4#
     楼主| 发表于 2017-6-16 09:13:57 | 只看该作者
    cq520131517 发表于 2017-6-15 19:56
    在输入文本之前,加一个时间等待试一下

    driver.manage().timeouts().pageLoadTimeout(10,TimeUnit.SECONDS); 是加这句吗?
    添加完了 但问题还发生。
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    开心
    11 小时前
  • 签到天数: 2030 天

    连续签到: 2 天

    [LV.Master]测试大本营

    3#
    发表于 2017-6-15 19:56:53 | 只看该作者
    在输入文本之前,加一个时间等待试一下
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    慵懒
    2017-10-12 17:51
  • 签到天数: 16 天

    连续签到: 1 天

    [LV.4]测试营长

    2#
    发表于 2017-6-15 16:22:40 | 只看该作者
    它说object undefined 看看‘’Text‘’中的内容对不对,判断下获取的元素对不对
    回复 支持 反对

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-17 17:46 , Processed in 0.067754 second(s), 23 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表