久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      <i id='AWqre'><tr id='AWqre'><dt id='AWqre'><q id='AWqre'><span id='AWqre'><b id='AWqre'><form id='AWqre'><ins id='AWqre'></ins><ul id='AWqre'></ul><sub id='AWqre'></sub></form><legend id='AWqre'></legend><bdo id='AWqre'><pre id='AWqre'><center id='AWqre'></center></pre></bdo></b><th id='AWqre'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='AWqre'><tfoot id='AWqre'></tfoot><dl id='AWqre'><fieldset id='AWqre'></fieldset></dl></div>
      <legend id='AWqre'><style id='AWqre'><dir id='AWqre'><q id='AWqre'></q></dir></style></legend>

    1. <small id='AWqre'></small><noframes id='AWqre'>

      <tfoot id='AWqre'></tfoot>
        <bdo id='AWqre'></bdo><ul id='AWqre'></ul>

        Web 應(yīng)用程序的集成測(cè)試

        Integration Testing for a Web App(Web 應(yīng)用程序的集成測(cè)試)

            <bdo id='fIXIH'></bdo><ul id='fIXIH'></ul>
            1. <i id='fIXIH'><tr id='fIXIH'><dt id='fIXIH'><q id='fIXIH'><span id='fIXIH'><b id='fIXIH'><form id='fIXIH'><ins id='fIXIH'></ins><ul id='fIXIH'></ul><sub id='fIXIH'></sub></form><legend id='fIXIH'></legend><bdo id='fIXIH'><pre id='fIXIH'><center id='fIXIH'></center></pre></bdo></b><th id='fIXIH'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='fIXIH'><tfoot id='fIXIH'></tfoot><dl id='fIXIH'><fieldset id='fIXIH'></fieldset></dl></div>
              <legend id='fIXIH'><style id='fIXIH'><dir id='fIXIH'><q id='fIXIH'></q></dir></style></legend>
                <tbody id='fIXIH'></tbody>

                • <small id='fIXIH'></small><noframes id='fIXIH'>

                  <tfoot id='fIXIH'></tfoot>
                • 本文介紹了Web 應(yīng)用程序的集成測(cè)試的處理方法,對(duì)大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我想對(duì) Web 應(yīng)用程序進(jìn)行完整的集成測(cè)試.我想測(cè)試很多東西,例如 AJAX、某些短語和 HTML 元素的定位和存在使用多個(gè)瀏覽器.我正在尋找一種工具來進(jìn)行這種自動(dòng)化測(cè)試.

                  I want to do full integration testing for a web application. I want to test many things like AJAX, positioning and presence of certain phrases and HTML elements using several browsers. I'm seeking a tool to do such automated testing.

                  另一方面;這是我第一次使用集成測(cè)試.在進(jìn)行此類測(cè)試時(shí)有什么具體建議嗎?還有教程嗎?

                  On the other hand; this is my first time using integration testing. Are there any specific recommendations when doing such testing? Any tutorial as well?

                  (請(qǐng)注意:我的后端代碼是使用 Perl、Python 和 Django 完成的.)

                  謝謝!

                  推薦答案

                  如果您需要進(jìn)行全面測(cè)試,包括利用 AJAX 等瀏覽器功能,那么我會(huì)推薦 硒.Selenium 啟動(dòng)瀏覽器并控制它運(yùn)行測(cè)試.

                  If you need to do full testing including exploiting browser features like AJAX then I would recomend Selenium. Selenium launches a browser and controls it to run the tests.

                  它支持所有主要的平臺(tái)和瀏覽器.Selenium 本身是用 Java 實(shí)現(xiàn)的,但如果它被用于通過其用戶界面測(cè)試 Web 應(yīng)用程序,這并不是真正的問題.

                  It supports all the major platforms and browsers. Selenium itself is implemented in Java but that is not really an issue if it is being used to test a web application through its user interface.

                  Selenium 測(cè)試是 HTML 表格中的一系列命令,支持的命令在文檔化中有很好的說明.還有一個(gè) IDE 作為 Firefox 插件實(shí)現(xiàn),可用于記錄和運(yùn)行測(cè)試.但是,在 IDE 中創(chuàng)建的測(cè)試腳本可用于針對(duì)任何受支持的瀏覽器進(jìn)行測(cè)試.

                  Selenium tests are a sequence of commands in an HTML table, the supported commands are in well documented. There is also an IDE implemented as a Firefox plugin that can be used to record and run tests. However the test scripts created in the IDE can be used to drive tests against any of the supported browsers.

                  這篇關(guān)于Web 應(yīng)用程序的集成測(cè)試的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權(quán)益,請(qǐng)聯(lián)系我們刪除處理,感謝您的支持!

                  相關(guān)文檔推薦

                  python: Two modules and classes with the same name under different packages(python:不同包下同名的兩個(gè)模塊和類)
                  Configuring Python to use additional locations for site-packages(配置 Python 以使用站點(diǎn)包的其他位置)
                  How to structure python packages without repeating top level name for import(如何在不重復(fù)導(dǎo)入頂級(jí)名稱的情況下構(gòu)造python包)
                  Install python packages on OpenShift(在 OpenShift 上安裝 python 包)
                  How to refresh sys.path?(如何刷新 sys.path?)
                  Distribute a Python package with a compiled dynamic shared library(分發(fā)帶有已編譯動(dòng)態(tài)共享庫(kù)的 Python 包)

                    <i id='XrEG5'><tr id='XrEG5'><dt id='XrEG5'><q id='XrEG5'><span id='XrEG5'><b id='XrEG5'><form id='XrEG5'><ins id='XrEG5'></ins><ul id='XrEG5'></ul><sub id='XrEG5'></sub></form><legend id='XrEG5'></legend><bdo id='XrEG5'><pre id='XrEG5'><center id='XrEG5'></center></pre></bdo></b><th id='XrEG5'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='XrEG5'><tfoot id='XrEG5'></tfoot><dl id='XrEG5'><fieldset id='XrEG5'></fieldset></dl></div>
                      <tbody id='XrEG5'></tbody>
                    • <bdo id='XrEG5'></bdo><ul id='XrEG5'></ul>
                    • <small id='XrEG5'></small><noframes id='XrEG5'>

                        1. <tfoot id='XrEG5'></tfoot>
                          • <legend id='XrEG5'><style id='XrEG5'><dir id='XrEG5'><q id='XrEG5'></q></dir></style></legend>
                          • 主站蜘蛛池模板: 欧美精品a∨在线观看不卡 欧美日韩中文字幕在线播放 | 九色视频网站 | 欧美久久精品 | 天天av天天好逼 | 亚洲精品一区中文字幕乱码 | 精品在线一区二区 | 日韩欧美国产精品一区二区 | 成人av网站在线观看 | 一区二区三区中文字幕 | 懂色av色香蕉一区二区蜜桃 | www.毛片| 国产精品一区二区欧美 | 久久99精品久久久久子伦 | 国产成人精品一区二区 | 在线观看国产视频 | 亚洲精品久久久久久国产精华液 | 黄色中文字幕 | 福利视频网站 | 黄色网址在线播放 | 亚洲人在线 | 欧美性受xxxx| 日韩在线欧美 | 国产精品伦一区二区三级视频 | 日日久 | 亚洲一区二区三区四区五区午夜 | av天天看| 亚洲精品成人在线 | 日韩手机在线看片 | 欧美成人一区二免费视频软件 | 亚洲免费在线观看 | 久久久91精品国产一区二区三区 | 亚洲自拍偷拍欧美 | 中文字幕亚洲在线 | 日操操 | 国产精品久久久久久吹潮日韩动画 | 久久久久久久一区二区三区 | 国产精品美女久久久久久久网站 | 精品国产一区二区三区免费 | 亚洲毛片在线 | 精彩视频一区二区三区 | 天天干天天操 |