Web ブラウザを自動化するための最もよく知られたオープンソース フレームワークの 1 つは Selenium と呼ばれます。これにより、開発者やテスターは、ボタンのクリック、フォームへの入力、ページ間の移動など、Web ページ上のユーザー アクションをシミュレートできます。 Web アプリケーションをテストしたり、反復的なタスクを実行したりするため。たとえば、これには、フォームの [送信] をクリックしたり、ページで [次へ] をクリックしたりすることが含まれます。
Selenium で使用できるプログラミング言語は、Python、Java、C#、JavaScript など多数あります。これとは別に、Chrome、Firefox、Edge、Safari などの Web ブラウザーを操作するためのさまざまなツールやライブラリへのアクセスもユーザーに提供します。
クロスブラウザ互換性 - Selenium は複数の Web ブラウザをサポートしているため、さまざまなプラットフォームやブラウザで Web アプリケーションをテストできます。
使いやすさ - Selenium は、ページ上の Web 要素と対話できるシンプルな API を提供し、反復的なタスクを簡単に自動化できます。
拡張可能 - Selenium はカスタム プラグインやライブラリで拡張でき、新しい機能を追加したり、ニーズに合わせてフレームワークをカスタマイズしたりできます。
大規模コミュニティ - Seleniumには開発者とテスターの大規模で活発なコミュニティがあり、知識を共有してフレームワークの開発に貢献します
自動テスト - Selenium を使用すると、Web アプリケーションの機能テストと回帰テストを自動化でき、アプリケーションを迅速かつ一貫してテストできます。
Web スクレイピング - Selenium を使用して Web ページからデータを抽出し、分析や研究のためのデータを収集できます。
ブラウザ自動化 - Selenium を使用すると、フォームへの入力や特定のページへの移動など、Web ブラウザでの反復的なタスクを自動化できます。
この記事では、Python を使用して Selenium Web 要素駆動メソッドを作成する方法について説明します。この方法を使用すると、Selenium テスト スクリプトは Web ページ上に Web ページ要素を作成し、これらの要素に対してクリックや入力などのアクションを実行できます。
ステップとプロセス
ステップ 2: Web 要素ドライバー メソッドの作成
メソッドは、要素と呼ばれる空の変数を初期化することから始まります。この変数は、作成された Web 要素オブジェクトを格納するために使用されます。
このドライバー メソッドでは、element_identifier 引数の前にアスタリスク (*) を使用しました。これは、find_element メソッドの検索メカニズムと値パラメーターを含むタプルを解凍するためです。
このメソッドには Try-Except ブロックも含まれています。要素が見つからない場合、このメソッドはコンソールにエラー メッセージを出力し、None を返します。
最後に、メソッドは作成された Web 要素オブジェクトを返します。
ステップ 3: Web 要素ドライバーメソッドの使用
create_web_element ドライバー メソッドを定義したので、それを使用して Web 要素を作成し、それらに対して操作を実行する方法を見てみましょう。この例では、Google 検索ボックスの Web ページ要素を作成し、検索ボックスにクエリを入力して、検索ボタンをクリックします。
リーリーまず、Chrome ブラウザ ドライバーのインスタンスを作成し、Google に移動します。次に、create_web_element ドライバー メソッドを使用して、検索ボックス用と検索ボタン用の 2 つの Web ページ要素を作成します。
最後に、検索結果が読み込まれるまで待機する一時停止を追加し、ブラウザを閉じます
isDisplayed() is the command to use.
The isDisplayed command in Selenium checks to see whether a certain element is present and whether or not it is shown. The value that is returned is true if and only if the element in question is visible.
You are able to conduct tests in several browsers with the help of Selenium WebDriver, which is a web framework. This programme is used for the purpose of automating the testing of web-based applications to ensure that they function as anticipated. While writing test scripts using Selenium WebDriver, you have the option of using a variety of programming languages.
ChromeDriver, EdgeDriver, FirefoxDriver, and Internet Explorer Driver are some of the most important examples of implementation classes for the WebDriver interface. Every driver class is analogous to a different browser. Simply said, we create new instances of the driver class objects and operate on them. It enables you to run Selenium scripts on the Chrome browser more effectively.
Log4J 1和Log4J 2是它们的应用程序编程接口。与Log4J 2相比,Log4J1具有许多非常好的功能,并且使用起来也非常愉快和多功能。
The architecture of Selenium is made up of five different parts: the Selenium Client Library, the Selenium API, the JSON Wire Protocol, and Browser Drivers and Browsers themselves. A Selenium client library is a collection of Selenium instructions written in the programmer's language of choice and formatted according to the W3C Selenium protocol.
方法重写是指子类的方法名与其基类中相应方法的名称相同的过程。这可以被视为一种方法,使得子类能够提供一个已经包含在其超类中并由其超类定义的方法的独特实现。
In order for us to be able to examine this element using Selenium, we need to discover a method to access it by right-clicking on the element and selecting the Inspect option from the context menu. The INPUT type is being scrutinised as part of our examination because it has an attribute of the NAME type. The NAME has a unique value.
from selenium import webdriver import time def create_web_element(driver, element_identifier): element = None try: element = driver.find_element(*element_identifier) except: print("Element not found.") return element element = driver.find_element(*element_identifier) # Create a Chrome web driver instance and navigate to Google driver = webdriver.Chrome() driver.get("https://www.google.com/") # Create the search box and search button web elements search_box = create_web_element(driver, ('name', 'q')) search_btn = create_web_element(driver, ('name', 'btnK')) # Type a query into the search box and click the search button search_box.send_keys("Selenium WebDriver") search_btn.click() # Wait for the search results to load and then close the browser time.sleep(5) driver.quit()
In this piece, we will walk you through the process of developing a universal function using NumPy. We began by gaining a knowledge of what a universal function is in NumPy as well as the significance of having one. First, we developed a simple Python function, and afterwards used the "numpy.frompyfunc" technique to transform it into a general-purpose function. After that, we used the "numpy.vectorize" method to specify the kind of data that would be returned by the universal function. In the last step of this process, we used the universal function on an array with several dimensions and then examined the resulting data. You will be able to improve the efficiency of your code by developing your own custom universal functions in NumPy by following these instructions.
以上がSelenium Python で Web 要素駆動メソッドを作成するの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。