kagami1 2020-02-24 01:11 采纳率: 0%
浏览 1446
已结题

请教关于使用JS实现浏览器简单自动登录的脚本

本人想用 JS 实现谷歌浏览器自动登录功能
以下为JS代码

document.getElementById('username').value='admin';
 document.getElementById('password').value='123456';
 credentials.username='admin';
credentials.password='123456';
 document.getElementById("submit").disabled=false; 
  document.getElementById('submit').click();
目前问题是 用户名和密码都有 ng-model属性, 导致一直提示账号密码错误。
请问这种情况下 应该怎么修改。请各位大神指导下。
问题关键点:
关键点是 ng-model属性是双向绑定,页面提交的数据是credentials,而不是某个输入框的VALUE ;单独改VALUE或者直接credentials.username=赋值提交后是无效的。还是账号密码错误。;需要解决的是这种情况下如何给credentials里面的credentials.username和credentials。password正确的赋值。


下面是网页的源码:
<!DOCTYPE html><html class="no-js vui-layout-html" ng-app="esxUiApp" style="min-width: 768px;"><head class=""><style type="text/css" class="">@charset "UTF-8";[ng\:cloak],[ng-cloak],[data-ng-cloak],[x-ng-cloak],.ng-cloak,.x-ng-cloak,.ng-hide:not(.ng-hide-animate){display:none !important;}ng\:form{display:block;}</style>
    <title ng-bind="$root.title" class="">登录 - VMware ESXi</title>

    <meta charset="utf-8" class="">
    <meta http-equiv="X-UA-Compatible" content="IE=edge" class="">
    <meta http-equiv="cache-control" content="max-age=0" class="">
    <meta http-equiv="cache-control" content="no-cache" class="">
    <meta http-equiv="expires" content="0" class="">
    <meta http-equiv="expires" content="Tue, 01 Jan 1980 1:00:00 GMT" class="">
    <meta http-equiv="pragma" content="no-cache" class="">
    <meta name="description" content="" class="">

    <!-- The initial, max and min scale settings -->
    <meta name="viewport" content="
       width=device-width,
       initial-scale=0.5001,
       minimum-scale=1.0001,
       maximum-scale=5.0001,
       user-scalable=yes" class="">

    <!-- The following will hide the chrome on mobile Safari and Chrome on Android
         if the user has added a shortcut to their home screen. -->
    <meta name="mobile-web-app-capable" content="yes" class="">
    <meta name="apple-mobile-web-app-capable" content="yes" class="">
    <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" class="">

    <link rel="stylesheet" href="bower_components/vui-bootstrap/css/vui-bootstrap.min.css" class="">
    <link rel="stylesheet" href="bower_components/jquery-ui/themes/base/jquery-ui.min.css" class="">
    <link rel="stylesheet" href="bower_components/codemirror/lib/codemirror.css" class="">
    <link rel="stylesheet" href="bower_components/codemirror/theme/mdn-like.css" class="">
    <link rel="stylesheet" href="bower_components/nvd3/build/nv.d3.min.css" class="">
    <link rel="stylesheet" href="bower_components/eonasdan-bootstrap-datetimepicker/build/css/bootstrap-datetimepicker.min.css" class="">
    <link rel="icon" type="image/x-icon" href="favicon.ico" class="">
    <link rel="apple-touch-icon" href="apple-touch-icon.png" class="">

    <link rel="stylesheet" href="node_modules/vfeed/vfeed.css" class="">

    <!-- build:css(.tmp) styles/main.css -->
    <link rel="stylesheet" href="styles/main.css" class="">
    <!-- endbuild -->

    <!-- we use vendor.css to allow partner customizations, normally it is empty -->
    <link rel="stylesheet" href="styles/vendor.css" class="">
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="main" src="scripts/main.js" class=""></script></head>

<body ng-app="esxUiApp" class="base-app-style" style="overflow: hidden;">
    <!--[if lt IE 7]>
    <p class="browsehappy">
       You are using an <strong>outdated</strong> browser.
       Please <a href="http://browsehappy.com/">upgrade your browser</a> to
       improve your experience.
    </p>
    <![endif]-->

    <!-- Add your site or application content here -->
    <div class="">
      <!-- uiView:  --><div ui-view="" class=""><div class="loginContainer">
   <img id="topSplash" src="images/AppBgPattern.png" alt="背景图像">

   <div style="position: absolute; top: 65px; left: 65px;">
      <img src="images/vmware_logo_white_transparent.png" style="width: 60%;">
   </div>

   <form name="loginForm" ng-submit="login(credentials)" novalidate="" class="ng-pristine ng-valid">

      <div id="loginForm">

         <p class="loginRow ng-hide" ng-show="devmode || electron">
            <label id="host-label" class="loginLabel">主机名
               <input id="hostname" autocomplete="off" aria-labelledby="host-label" tabindex="1" ng-disabled="loggingIn" ng-class="{loginFailed: loginFailed}" class="margeTextInput ng-pristine ng-untouched ng-valid" type="text" ng-model="credentials.hostname" ng-model-options="{
                     updateOn: 'blur'
                  }">
            </label>
         </p>

         <p class="loginRow">
            <label id="username-label" class="loginLabel">用户名
               <input id="username" aria-labelledby="username-label" tabindex="2" focus-me="true" ng-disabled="loggingIn" ng-class="{loginFailed: loginFailed}" class="margeTextInput ng-pristine ng-valid ng-touched" type="text" ng-model="credentials.username">
            </label>
         </p>

         <p class="loginRow">
            <label id="password-label" class="loginLabel">密码
               <input id="password" autocomplete="off" aria-labelledby="password-label" tabindex="4" ng-disabled="loggingIn" ng-class="{loginFailed: loginFailed}" class="margeTextInput ng-pristine ng-untouched ng-valid" type="password" ng-model="credentials.password">
            </label>
         </p>

         <p>&nbsp;</p>

         <p id="loginButtonRow">
            <input id="submit" class="button blue" type="submit" value="登录" ng-disabled="credentials.username === '' ||
                  loggingIn" disabled="disabled">
         </p>
      </div>

      <div id="productName">
         <img src="images/vmware_logo_white_transparent.png" style="width: 120px; margin-right: 10px;">
            <img src="images/esxi.png" style="margin-bottom: 2px; width: 60px;">

         <!-- ngIf: loggingIn -->

         <!-- ngIf: status !== null -->

         <div ng-show="welcome !== null &amp;&amp; !loggingIn &amp;&amp; !initializing" ng-style="{'margin-top': status === null ? '29px' : '10px'}" class="loginWelcome ng-hide" style="margin-top: 29px;">
            <div ng-bind-html="welcome | escapeHtml | linebreak"></div>
            <div ng-show="accept !== null" style="margin: 10px; text-align: right;" class="ng-hide">
               <label>
                  <input type="checkbox" tabindex="3" ng-model="accepted" style="margin: 0 5px 0 0;" class="ng-pristine ng-untouched ng-valid">
               </label>
            </div>
         </div>
      </div>

   </form>

   <div id="footer" class="footer">
      <a href="https://www.vmware.com/cn/support/pubs/" target="_blank">
         <i class="esx-icon-help-new-window" style="margin-top: -3px; margin-right: 6px;"></i>打开 VMware Host Client 文档</a>
      <div style="float: right;"></div>
   </div>

</div>
</div>
    </div>

    <!-- Fixes required for electron -->
    <script class="">
        var _loc = String(window.location);
        if (_loc && _loc.indexOf('file:///') >= 0) {
            // requireJS has a bit of a crippled exporting mechanism for node, so we need to pull
            // these objects up into global scope.
            require('./bower_components/es6-promise/es6-promise.min.js');
            window.$ = window.jQuery = require('./bower_components/jquery/dist/jquery.min');
            require('./bower_components/jquery-ui/jquery-ui.min');
            window.I18n = require('./bower_components/i18n-js/app/assets/javascripts/i18n.js')
            window.vsphere = require('./thirdparty/vspherejs/index.js')
            window.ipaddr = require('./bower_components/ipaddr/ipaddr.min.js');
        }
    </script>
    <!-- end electron -->

    <!-- build:js(.) scripts/oldieshim.js -->
    <!--[if lt IE 9]>
    <script src="bower_components/es5-shim/es5-shim.js"></script>
    <script src="bower_components/json3/lib/json3.js"></script>
    <![endif]-->
    <!-- endbuild -->

    <script src="bower_components/jxon/index.js" class=""></script>
    <script src="bower_components/i18n-js/app/assets/javascripts/i18n.js" class=""></script>
    <script src="bower_components/es6-shim/es6-shim.min.js" class=""></script>

    <!-- The main entry point for Angular -->
    <script src="bower_components/requirejs/require.js" data-main="scripts/main" class=""></script>



</body></html>

  • 写回答

1条回答

  • dabocaiqq 2020-02-24 10:40
    关注
    评论

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置