gpt4 book ai didi

authentication - 使用 JUnit 和 Selenium-RC 以编程方式设置凭据

转载 作者:行者123 更新时间:2023-12-04 06:34:28 25 4
gpt4 key购买 nike

我必须使用 selenium 测试应用程序。应用程序本身针对事件目录服务器进行身份验证。所有用户帐户均采用“username@domain.tld”形式。我必须使用使用 selenium java 客户端库的 Java JUnit (4.x) 测试。

不幸的是,我无法将用户名和密码直接设置到 url 中。据我所知,@ 符号必须在 url 中编码。

selenium = new DefaultSelenium("localhost", 4444, "*chrome", "http://username%64domain.tld:password@server/appbase");

我得到的只是一些授权异常(exception):
com.thoughtworks.selenium.SeleniumException: XHR ERROR: URL = http://username%64domain.tld:password@server/appbase/mapage Response_Code = 401 Error_Message = Unauthorized

有没有办法在 url 中设置用户凭据(对于具有给定命名方案的用户)?还有其他方法可以以编程方式提供用户凭据吗?

预先感谢您的任何答案

问候, 马可

最佳答案

我最近研究了使用 Selenium 进行身份验证,并了解到由于安全原因,大多数浏览器都不推荐使用这种 url 身份验证。

我们的解决方案(运行 selenium rc 1.0.3)是在 user-extensions.js 中编写一个函数来查找登录控件(使用类名),如果找到,则插入 id 和密码并登录。这当然依赖于使用 Forms 身份验证,因此请求链为:

  • 尝试获取您的页面
  • 如果没有登录,重定向到登录页面
  • 执行登录
  • 如果通过身份验证,重定向到您的
    再翻页

  • ——
    Selenium.prototype.doTryLogin = function(locator, text ) {
    /**
    * Tries to log in into a forms authentication site
    * using the supplied locator and finding the first input[text]
    * element for login name, the first input[password] element
    * as password and the first input[submit] as submit button.
    * Use TryLoginAndWait to ensure logging in is performed before
    * next test step.
    *
    * @param locator the DOM container for login, password and button
    * @param text part of login page name to check for
    *
    */

    // Check if the user has been redirected due to authentication
    var location = this.getLocation().toLowerCase();

    if (location.indexOf(text) > -1) {
    this.doSetLoginName(locator + ' input[type=text]');
    this.doSetPassword(locator + ' input[type=password]');
    this.doClick(locator + ' input[type=submit]');
    }
    else {
    this.doRefresh();
    }
    }


    Selenium.prototype.doSetLoginName = function(locator, text ) {
    var element = this.page().findElement(locator);
    this.page().replaceText(element, 'your_id');
    }

    Selenium.prototype.doSetPassword = function(locator, text )
    var element = this.page().findElement(locator);
    this.page().replaceText(element, 'the_password');
    }

    关于authentication - 使用 JUnit 和 Selenium-RC 以编程方式设置凭据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4997540/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com