タグ

2011年3月28日のブックマーク (4件)

  • ちょっと Selenium - Python で - mitszoの日記

    いま関わってる案件で使えないかなーと思ってちょっとだけ試したメモ。(ちょっとだけな理由は後述)SeleniumSelenium のトップページSelenium RC今回使った Selenium RC (Remote Control)ダウンロードページSelenium RC: Downloadから最新版(この時点では Version 1.0 beta 1)をダウンロード。適当なディレクトリ(ここでは D:\Selenium )に展開。展開した内容は D: \Selenium \selenium-remote-control-1.0-beta-1 \selenium-dotnet-client-driver-1.0-beta-1 \selenium-java-client-driver-1.0-beta-1 \selenium-perl-client-driver-1.0-beta-1 \se

  • selenium · PyPI

    Example 0: open a new Firefox browser load the page at the given URL from selenium import webdriver browser = webdriver.Firefox() browser.get('http://selenium.dev/') Example 1: open a new Firefox browser load the Yahoo homepage search for “seleniumhq” close the browser from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.common.keys import Keys browser

    selenium · PyPI
  • Selenium

    Selenium automates browsers. That's it!What you do with that power is entirely up to you. Primarily it is for automating web applications for testing purposes, but is certainly not limited to just that. Boring web-based administration tasks can (and should) also be automated as well. Selenium WebDriver If you want to create robust, browser-based regression automation suites and tests, scale and di

  • ブラウザを選ばずWebテストを自動化するSelenium

    Webアプリケーションのファンクションテストを行うツールとして注目されている「Selenium」のバージョン1.0が6月20日にリリースされました。安定性が向上するとともに、Firefox 3.0、3.5(Selenium IDEは1.0.2から、Firefox 3.5に対応)や、Internat Explorer(以下、IE) 8などの最新のWebブラウザにも対応しました。 稿では、Selenium 1.0をベースとしたSelenium IDEとSelenium RCを利用した効果的なSeleniumの利用方法を紹介します。 Webアプリのテストで誰もがイラつく大きな課題 Webアプリケーションテストを手で行うと、非常に煩雑です。Selenium登場以前の従来のやり方では、次のような問題がありました。 回帰テストに時間がかかる バグ修正や仕様変更などで、Webアプリケーションを変更した

    ブラウザを選ばずWebテストを自動化するSelenium