自分用。ソースからdescription抜いて機械翻訳しました。
もっといいのがあれば教えてください。
ソース | メソッド | 説明 | description |
---|---|---|---|
ClassFactory.bas | VB_Description | このクラスは、別のコードプロジェクトから SeleniumVBA を参照する際のオブジェクトのインスタンス化に使用されます。 | This class is used for object instantiation when referencing SeleniumVBA externally from another code project |
ClassFactory.bas | New_WebDriver | WebDriver オブジェクトをインスタンス化します。 | Instantiates a WebDriver object |
ClassFactory.bas | New_WebElements | WebElements オブジェクトをインスタンス化します。 | Instantiates a WebElements object |
ClassFactory.bas | New_WebDriverManager | WebDriverManager オブジェクトをインスタンス化します。 | Instantiates a WebDriverManager object |
ClassFactory.bas | New_WebCookie | WebCookie オブジェクトをインスタンス化します。 | Instantiates a WebCookie object |
ClassFactory.bas | New_WebJsonConverter | WebJsonConverter オブジェクトをインスタンス化します。このオブジェクトは事前宣言されているため、省略可能です。 | Instantiates a WebJsonConverter object - this is optional as this object is predeclared |
ClassFactory.bas | New_WebKeyboard | WebKeyboard オブジェクトをインスタンス化します。このオブジェクトは事前宣言されているため、省略可能です。 | Instantiates a WebKeyboard object - this is optional as this object is predeclared |
ClassFactory.bas | New_WebPrintSettings | WebPrintSettings オブジェクトをインスタンス化します。 | Instantiates a WebPrintSettings object |
WebActionChain.cls | VB_Description | このクラスは、Web ページに対する人間の操作シーケンスをエミュレートするために使用されます。WebDriver の ActionChain メソッドを使用してインスタンス化する必要があります。 | This class is used to emulate a human interaction sequence with the webpage - must be instantiated using WebDriver's ActionChain method |
WebActionChain.cls | MoveToElement | マウスを要素の中央に移動します。 | Moves the mouse to the middle of an element |
WebActionChain.cls | Click | 要素をクリックします。 | Clicks an element |
WebActionChain.cls | ClickAndHold | 要素上でマウスの左ボタンを押し続けます。 | Holds down the left mouse button on an element |
WebActionChain.cls | ClickContext | 要素上でコンテキストクリック(右クリック)を実行します。 | Performs a context-click (right click) on an element |
WebActionChain.cls | DoubleClick | 要素をダブルクリックします。 | Double-clicks an element |
WebActionChain.cls | ReleaseButton | 要素上で押していたマウスボタンを放します。 | Releases a held mouse button on an element |
WebActionChain.cls | DragAndDrop | ソース要素上でマウスの左ボタンを押し続けた後、ターゲット要素に移動してマウスボタンを放します。ボタン | Holds down the left mouse button on the source element, then moves to the target element and releases the mouse button |
WebActionChain.cls | DragAndDropByOffset | ソース要素上でマウスの左ボタンを押したまま、ターゲットオフセットまで移動してマウスボタンを放します。 | Holds down the left mouse button on the source element, then moves to the target offset and releases the mouse button |
WebActionChain.cls | DragAndDropToPosition | ソース要素上でマウスの左ボタンを押したまま、XオフセットとYオフセットまで移動します。 | Holds down the left mouse button on the source element, then moves to the x and y offsets |
WebActionChain.cls | KeyDown | キーの押下のみを送信し、ボタンを放しません。修飾キー(Ctrl、Alt、Shift)と併用してください。 | Sends a key press only, without releasing it. Should only be used with modifier keys (Ctrl, Alt, and Shift) |
WebActionChain.cls | KeyUp | 修飾キーを解放します。 | Releases a modifier key |
WebActionChain.cls | Wait | 実行をミリ秒単位で一時停止します。 | Pauses execution for time in milliseconds |
WebActionChain.cls | MoveByOffset | マウスを現在のマウス位置からのオフセットに移動します。要素が指定されている場合は、要素の左上隅を基準としたオフセットでマウスを移動します。 | Moves the mouse to an offset from current mouse position - if element is specified, then moves the mouse by an offset relative to the top-left corner of the element |
WebActionChain.cls | MoveToXY | マウスポインターをビューポートの原点(左上)を基準とした(x,y)に移動します。 | Moves the mouse pointer to (x,y) relative to viewport origin (top-left) |
WebActionChain.cls | SendKeys | 現在フォーカスされている要素にキーシーケンスを送信します(特殊キーのサポートについてはWebKeyboardクラスを参照してください)。 | Sends key sequence to current focused element (see WebKeyboard class for special keys support) |
WebActionChain.cls | Clear | フォーカスされている要素のテキストフィールドをクリアします。 | Clears the focused element's text field |
WebActionChain.cls | CtrlKey | フォーカスされている要素にCtrl+[Key]シーケンスを送信します。 | Sends a Ctrl-[Key] sequence to focused element |
WebActionChain.cls | ShiftKey | フォーカスされている要素にShift+[Key]シーケンスを送信します。 | Sends a Shift-[Key] sequence to focused element |
WebActionChain.cls | CtrlShiftKey | フォーカスされている要素にCtrl+Shift+[Key]シーケンスを送信します。 | Sends a Ctrl-Shift-[Key] sequence to focused element |
WebActionChain.cls | CtrlAltKey | フォーカスされている要素にCtrl+Alt+[Key]シーケンスを送信します。 | Sends a Ctrl-Alt-[Key] sequence to focused element |
WebActionChain.cls | AltShiftKey | フォーカスされている要素にAlt+Shift+[Key]シーケンスを送信します。 | Sends a Alt-Shift-[Key] sequence to focused element |
WebActionChain.cls | ScrollToElement | オプションのxおよびyオフセットを使用して要素の位置までスクロールします。 | Scrolls to element position with optional x and y offsets |
WebActionChain.cls | ScrollBy | ウィンドウをxおよびyオフセットでスクロールします。 | Scrolls window by x and y offsets |
WebActionChain.cls | SetFocus | フォーカスを設定します。キー入力用の指定された要素(要素をクリックすることに注意してください) - クリックせずにフォーカスを設定するには、WebDriver/WebElement クラスの SetFocus メソッドを参照してください。 | Sets the focus on the given element for key input - note this clicks the element - for focus without clicking, see SetFocus method of WebDriver/WebElement classes |
WebActionChain.cls | Perform | アクションチェーンを実行します。 | Executes the action chain |
WebActionChain.cls | ResetActions | ローカル側とリモート側の両方で、アクションキューとキー/ポインターの状態をリセットします。 | Resets the action queue and key/pointer states on both the local and remote ends |
WebAlert.cls | VB_Description | このクラスはブラウザアラートを管理するために使用されます。WebDriver クラスの SwitchToAlert メソッドを使用してインスタンス化する必要があります。 | This class is used to manage browser alerts - must be instantiated using the SwitchToAlert method of the WebDriver class |
WebAlert.cls | GetText | アクティブなアラートのプロンプトテキストを返します。 | Returns the prompt text of the active alert |
WebAlert.cls | SendKeys | 指定されたテキストをアクティブなプロンプト型アラートに送信します。Selenium の特殊キーはアラートでは認識されません。 | Sends the specified text to the active prompt-type alert - Selenium special keys not recognized for alerts |
WebAlert.cls | Accept | アクティブなアラートを受け入れます。 | Accepts the active alert |
WebAlert.cls | Dismiss | アクティブなアラートを閉じます。 | Dismisses the active alert |
WebCapabilities.cls | VB_Description | このクラスは Selenium のオプション機能を管理/設定するために使用されます。WebDriver の CreateCapabilities メソッドを使用してインスタンス化する必要があります。 | This class is used to manage/set Selenium optional Capabilities - must be instantiated using WebDriver's CreateCapabilities method |
WebCapabilities.cls | SetCapability | 汎用機能を設定します。 | Sets a generic capability |
WebCapabilities.cls | SetAcceptInsecureCerts | acceptInsecureCerts 機能を設定します。 | Sets the acceptInsecureCerts capability |
WebCapabilities.cls | SetPageLoadStrategy | pageLoadStrategy 機能を設定します。デフォルトは normal です。 | Sets the pageLoadStrategy capability - defaults to normal |
WebCapabilities.cls | SetUnhandledPromptBehavior | unhandledPromptBehavior 機能を設定します。デフォルトは、dismiss と notify です。 | Sets the unhandledPromptBehavior capability - defaults to dismiss and notify |
WebCapabilities.cls | SetOption | オプションのキー/値を設定します。 | Sets an option key/value |
WebCapabilities.cls | AddExcludeSwitches | オプションのリストを追加します。 excludeSwitches | Adds a list of option excludeSwitches |
WebCapabilities.cls | AddWindowTypes | オプションのウィンドウタイプのリストを追加します | Adds a list of option windowTypes |
WebCapabilities.cls | AddExtensions | オプションの拡張機能のリストを追加します | Adds a list of option extensions |
WebCapabilities.cls | SetBrowserBinary | ブラウザ実行ファイルへのパスを標準以外の場所に設定します | Sets the path to the browser executable in a non-standard location |
WebCapabilities.cls | RemoveControlNotification | Edge/Chrome のコントロール通知を削除します | Removes control notification for Edge/Chrome |
WebCapabilities.cls | SetDetachBrowser | Edge/Chrome のデタッチオプションを設定します | Sets the detach option for Edge/Chrome |
WebCapabilities.cls | SetDebuggerAddress | 既存のブラウザに接続するために必要な、Edge/Chrome のデバッガアドレスオプションを設定します | Sets the Debugger Address option for Edge/Chrome needed to connect with an already existing browser |
WebCapabilities.cls | AddLocalStateFlags | 試験的なブラウザフラグのリストを追加します (edge://flags、chrome://flags)。フラグは @0 (デフォルト)、@1 (有効)、または @2 (無効) で終わる必要があります | Adds a list of experimental browser flags (edge://flags, chrome://flags). Flags must end in @0 (default), @1 (enable), or @2 (disable) |
WebCapabilities.cls | AddArguments | オプション引数のリストを追加します | Adds a list of option arguments |
WebCapabilities.cls | RunInvisible | ヘッドレス引数モードを実行します | Runs headless argument mode |
WebCapabilities.cls | RunIncognito | シークレット/プライベート引数モードを実行します | Runs incognito/private argument mode |
WebCapabilities.cls | SetProfile | ユーザー定義のプロファイルパスを設定します | Sets a user-defined profile path |
WebCapabilities.cls | SetUserAgent | ユーザーエージェント文字列を設定します | Sets the user agent string |
WebCapabilities.cls | SetPreference | オプション設定のキー/値を設定します | Sets an option preference key/value |
WebCapabilities.cls | SetDownloadPrefs | 自動ダウンロードの設定とディレクトリパスを設定します | Sets auto-download preferences and directory path |
WebCapabilities.cls | SetGeolocationAware | 地理位置情報の認識を許可するかどうかを設定します | Sets whether or not to allow geolocation awareness |
WebCapabilities.cls | Dictionary | 機能のディクショナリオブジェクトを返します | Returns a capabilities Dictionary object |
WebCapabilities.cls | ToJson | qc の JSON 文字列を返します | Returns Json string for qc |
WebCapabilities.cls | SaveToFile | 機能をファイルパスに保存します | Saves the capabilities to file path |
WebCapabilities.cls | LoadFromFile | 機能をファイルパスから読み込みます | Loads the capabilities from file path |
WebCookie.cls | VB_Description | このクラスは、Cookie オブジェクトを管理/変更するために使用されます | This class is used to manage/modify a cookie object |
WebCookie.cls | SameSite | クロスサイトリクエストで Cookie を送信するかどうか、またいつ送信するかをサーバーが指定できるようにする属性です。値は Strict、Lax(デフォルト)、None です。 | Attribute to let servers specify whether/when cookies are sent with cross-site requests. Values are Strict, Lax (default), and None |
WebCookie.cls | Domain | Cookie を関連付けるドメイン名を指定します。デフォルト値は現在のドメインです。 | Specifies name of the domain to associate the cookie with. The default value is the current domain |
WebCookie.cls | ExpiryUnix | Cookie の有効期限(Unix 形式)を取得または設定します。 | Gets or sets the expiration date and time (Unix format) for the cookie |
WebCookie.cls | ExpiryDate | Cookie の有効期限(日付形式)を取得または設定します。 | Gets or sets the expiration date and time (Date format) for the cookie |
WebCookie.cls | HttpOnly | Cookie を HTTP 経由でのみ使用する必要があるかどうかを示します。Cookie に HttpOnly 属性があり、クライアント側スクリプトからアクセスできない場合は true、それ以外の場合は false です。デフォルトは false です。 | Indicates whether the cookie has to be used only over HTTP or not. True if the cookie has the HttpOnly attribute and cannot be accessed through a client-side script; otherwise, false. The default is false |
WebCookie.cls | Name | Cookie の名前を取得または設定します。 | Gets or sets the name of the cookie |
WebCookie.cls | Secure | Cookie を安全な HTTPS 接続経由でのみサーバーに送信できるかどうかを示します。デフォルト値は false です。 | Indicates whether the cookie can only be sent to the server over a secure HTTPS connection. The default value is false |
WebCookie.cls | Value | Cookie の値を取得または設定します。 | Gets or sets the value of the cookie |
WebCookie.cls | Path | Cookie と共に送信する仮想パスを取得または設定します。デフォルトは / で、これはサーバーのルートです。 | Gets or sets the virtual path to transmit with the cookie. The default is /, which is the server root |
WebCookie.cls | ToDictionary | Cookie を Dictionary オブジェクトとして返します。 | Returns the cookie as a Dictionary object |
WebCookies.cls | VB_Description | このクラスは Cookie オブジェクトのコレクションを管理するために使用されます。WebDriver の CreateCookies メソッドを使用してインスタンス化する必要があります。 | This class is used to manage a collection of cookie objects - must be instantiated using WebDriver's CreateCookies method |
WebCookies.cls | Add | コレクションに Cookie を追加します。 | Adds a cookie to the collection |
WebCookies.cls | Count | コレクション内の Cookie の数を返します。 | Returns the number of cookies in the collection |
WebCookies.cls | Size | コレクション内の Cookie の数を返します。 | Returns the number of cookies in the collection |
WebCookies.cls | Remove | 指定されたインデックスに対応する Cookie を削除します。 | Removes a cookie corresponding to the given index |
WebCookies.cls | Item | 指定されたインデックスの Cookie を返します。 | Returns the cookie of the provided index |
WebCookies.cls | SaveToFile | Cookie コレクションをファイルパスに保存します。 | Saves the cookie collection to a file path |
WebCookies.cls | LoadFromFile | ファイルパスから Cookie コレクションを読み込みます。 | Loads the cookie collection from a file path |
WebCookies.cls | RemoveAll | コレクションからすべてのメンバー Cookie オブジェクトを削除します。 | Removes all member cookie objects from the collection |
WebDriver.cls | VB_Description | このクラスは、ブラウザアプリケーションを制御/自動化するための主要なメカニズムを提供します。 | This class provides the main mechanism to control/automate a browser application |
WebDriver.cls | CommandWindowStyle | ドライバコマンドウィンドウの表示モードを設定します。デフォルトは vbHide です。 | Set the driver command window display mode - defaults to vbHide |
WebDriver.cls | StartEdge | Edge ドライバを起動します。 | Start an Edge driver |
WebDriver.cls | StartChrome | Chrome ドライバを起動します。 | Start a Chrome driver |
WebDriver.cls | StartFirefox | Firefox ドライバを起動します。 | Start a Firefox driver |
WebDriver.cls | StartIE | IE モードドライバを起動します。 | Start an IE mode driver |
WebDriver.cls | Shutdown | このドライバのポートに接続されているすべてのドライバインスタンスをシャットダウンします。 | Shuts down all driver instances attached to this driver's port |
WebDriver.cls | OpenBrowser | 指定された機能でブラウザインスタンスを開きます。 | Opens browser instance with specified capabilities |
WebDriver.cls | CloseBrowser | ドライバインスタンスを終了せずにブラウザを閉じます。 | Closes browser without terminating driver instance |
WebDriver.cls | NavigateTo | ブラウザを指定された Web ページに移動し、タイムアウトが発生していない場合は true を返します。その他のエラー | Navigates browser to a specified webpage and returns true if no timeout or other error |
WebDriver.cls | NavigateToFile | ブラウザで指定されたファイルパスのHTMLファイルに移動します | Navigates browser to an html file of the specified file path |
WebDriver.cls | FindElement | 指定されたセレクタと値の最初の要素を検索します | Finds the first element for a given selector and value |
WebDriver.cls | FindElements | 指定されたセレクタと値を満たすすべての要素を検索します | Finds all elements that satisfy the specified selector and value |
WebDriver.cls | FindElementByID | 指定された ID 値で最初の要素を検索します | Finds the first element by the specified id value |
WebDriver.cls | FindElementByTagName | 指定されたタグ名値で最初の要素を検索します | Finds the first element by the specified tag name value |
WebDriver.cls | FindElementByClassName | 指定されたクラス名値で最初の要素を検索します | Finds the first element by the specified class name value |
WebDriver.cls | FindElementByCssSelector | 指定された CSS セレクタ値で最初の要素を検索します | Finds the first element by the specified css selector value |
WebDriver.cls | QuerySelector | 指定された CSS セレクタ値で最初の要素を検索します | Finds the first element by the specified css selector value |
WebDriver.cls | FindElementByLinkText | 指定されたリンク テキスト値で最初の要素を検索します | Finds the first element by the specified link text value |
WebDriver.cls | FindElementByName | 指定された名前値で最初の要素を検索します | Finds the first element by the specified name value |
WebDriver.cls | FindElementByPartialLinkText | 指定された部分リンク テキスト値で最初の要素を検索します | Finds the first element by the specified partial link text value |
WebDriver.cls | FindElementByXPath | 指定された XPath クエリ値で最初の要素を検索します | Finds the first element by the specified xpath query value |
WebDriver.cls | FindElementsByXPath | 指定された XPath クエリ値を満たすすべての要素を検索します | Finds all elements that satisfy the specified xpath query value |
WebDriver.cls | FindElementsByID | 指定された ID 値を満たすすべての要素を検索します | Finds all elements that satisfy the specified id value |
WebDriver.cls | FindElementsByTagName | 指定されたタグ名値を満たすすべての要素を検索します | Finds all elements that satisfy the specified tag name value |
WebDriver.cls | FindElementsByClassName | 指定されたクラス名値を満たすすべての要素を検索します | Finds all elements that satisfy the specified class name value |
WebDriver.cls | FindElementsByCssSelector | 指定された CSS セレクタ値を満たすすべての要素を検索します | Finds all elements that satisfy the specified css selector value |
WebDriver.cls | QuerySelectorAll | 指定された CSS セレクタ値を満たすすべての要素を検索します | Finds all elements that satisfy the specified css selector value |
WebDriver.cls | FindElementsByLinkText | 指定されたリンク テキスト値を満たすすべての要素を検索します | Finds all elements that satisfy the specified link text value |
WebDriver.cls | FindElementsByName | 指定された名前値を満たすすべての要素を検索します | Finds all elements that satisfy the specified name value |
WebDriver.cls | FindElementsByPartialLinkText | 指定された部分リンク テキスト値を満たすすべての要素を検索しますリンクテキスト値 | Finds all elements that satisfy the specified partial link text value |
WebDriver.cls | SendKeysToOS | アクティブまたは指定されたOSウィンドウにキーシーケンスを送信します。特殊キーとコードの送信方法については、WebKeyboardクラスを参照してください。このメソッドは、インライン実行をブロックするウィンドウとやり取りするために、遅延された別のスレッドで実行することもできます。 | Sends a key sequence to the active or specified OS window - see WebKeyboard class for how to send special keys and chords. This method can optionally run on a delayed separate thread to interact with inline execution-blocking windows |
WebDriver.cls | SendKeys | 指定された要素にキーシーケンスを送信します。特殊キーとコードの送信方法については、WebKeyboardクラスを参照してください。 | Sends a key sequence to the specified element - see WebKeyboard class for how to send special keys and chords |
WebDriver.cls | Click | 要素をクリックします。要素が指定されていない場合は、アクティブな要素をクリックします。 | Clicks the element. If element not specified, then clicks on the active element |
WebDriver.cls | Submit | フォーム要素を送信します。要素が指定されていない場合は、アクティブなフォーム要素をクリックします。 | Submits a form element. If element not specified, then clicks on the active form element |
WebDriver.cls | GetText | 要素のテキストを取得します。オプションの visibleOnly を False に設定すると、非表示かどうかに関係なくテキストが返されます。 | Gets the text of the element - set optional visibleOnly to False to return text whether hidden or not |
WebDriver.cls | GoBack | ブラウザウィンドウで戻る矢印をクリックする動作をシミュレートします。 | Simulates clicking the back arrow on the browser window |
WebDriver.cls | GoForward | ブラウザウィンドウで進む矢印をクリックする動作をシミュレートします。 | Simulates clicking the forward arrow on the browser window |
WebDriver.cls | Refresh | 現在の URL を更新します。 | Refreshes the current url |
WebDriver.cls | GetCurrentUrl | 現在の URL 文字列を返します。 | Returns the current url string |
WebDriver.cls | GetActiveElement | アクティブな要素を返します。 | Returns the active element |
WebDriver.cls | GetProperty | 入力ボックスの値など、要素のプロパティの状態を取得します。プロパティが存在しない場合は、vbNullString を返します。 | Gets the property state of the element, such as the value of an input box - if the property does not exist, then it returns vbNullString |
WebDriver.cls | SetHighlight | 指定された要素を色で強調表示/強調表示解除します。 | Highlights/unhighlights specified element(s) with color |
WebDriver.cls | SetHightlightFoundElems | 今後見つかる要素を色で強調表示/強調表示解除します。 | Highlights/unhighlights future found element(s) with color |
WebDriver.cls | HasProperty | 現在の要素が指定されたプロパティを持っているかどうかを示すブール値を返します。 | Returns a boolean indicating if the current element has the specified property |
WebDriver.cls | HasAttribute | 要素が指定された属性を持っているかどうかを示すブール値を返します。 | Returns a boolean indicating if the element has the specified attribute |
WebDriver.cls | GetAttribute | 要素の指定された属性を取得します。 | Gets the specified attribute of the element |
WebDriver.cls | SetAttribute | 要素の属性を設定します。 | Sets the attribute of the element |
WebDriver.cls | GetAriaRole | 要素の Arial ロールを取得します。 | Gets the Arial role of the element |
WebDriver.cls | GetAriaLabel | 要素の Arial ラベルを取得します。 | Gets the Arial label of the element |
WebDriver.cls | GetTagName | 要素のタグ名を取得します。 | Gets the tag name of the element |
WebDriver.cls | SelectByValue | ドロップダウンオプション要素を選択します。指定された値属性を持つドロップダウンオプション要素を選択します。 | Selects a dropdown option element with the specified value attribute |
WebDriver.cls | SelectByVisibleText | 指定された表示テキストを持つドロップダウンオプション要素を選択します。 | Selects a dropdown option element with the specified visible text |
WebDriver.cls | GetAllSelectedOptions | 指定されたドロップダウン要素のすべての選択されているオプション要素を返します。 | Returns all selected option elements for the specified dropdown element |
WebDriver.cls | GetSelectedOption | 指定されたドロップダウン要素の最初の選択されているオプション要素を返します。 | Returns the first selected option element for the specified dropdown element |
WebDriver.cls | DeSelectByValue | 指定された値属性を持つドロップダウンオプション要素の選択を解除します。 | Deselects the dropdown option element having the specified value attribute |
WebDriver.cls | DeSelectByVisibleText | 指定された表示テキストを持つドロップダウンオプション要素の選択を解除します。 | Deselects the dropdown option element having the specified visible text |
WebDriver.cls | IsSelected | ドロップダウンオプション要素が選択されているかどうかを示すブール値を返します。 | Returns a boolean indicating if the dropdown option element is selected |
WebDriver.cls | IsMultiSelect | 要素が複数選択ドロップダウンかどうかを示すブール値を返します。 | Returns a boolean indicating if the element is a multi-select dropdown |
WebDriver.cls | SelectByIndex | 指定されたインデックスを持つドロップダウンオプション要素を選択します。 | Selects a dropdown option element with the specified index |
WebDriver.cls | SelectAll | すべての複数選択ドロップダウンオプション要素を選択します。 | Selects all multi-select dropdown option elements |
WebDriver.cls | DeSelectAll | すべてのドロップダウンオプション要素の選択を解除します。 | Deselects all dropdown option elements |
WebDriver.cls | DeSelectByIndex | 指定されたインデックスを持つドロップダウンオプション要素の選択を解除します。 | Deselects a dropdown option element with the specified index |
WebDriver.cls | ExecuteScript | Java スクリプトを同期的に実行します。 | Executes a java script synchronously |
WebDriver.cls | ExecuteScriptAsync | Java スクリプトを非同期的に実行します。 | Executes a java script asynchronously |
WebDriver.cls | ExecuteCDP | CDP コマンドを実行し、辞書レスポンスを返します。コマンドパラメータは、JSON 文字列または Dictionary オブジェクトで渡します。 | Executes a CDP command and returns a dictionary response. Pass command parameters with either a JSON string or a Dictionary object. |
WebDriver.cls | ExecuteCmd | コマンドとパラメータを Selenium WebDriver に送信し、辞書レスポンスを返します。コマンドパス内の引数(sessionId など)の前には $ 文字を付ける必要があります。コマンドにパラメータがある場合は、JSON 文字列または Dictionary オブジェクトを渡します。 | Sends a command and parameters to the Selenium WebDriver and returns a dictionary response. Arguments (such as sessionId) in the command path must be preceeded by a $ character. If the command has parameters, pass either a JSON string or a Dictionary object. |
WebDriver.cls | SaveScreenshot | アクティブなブラウザウィンドウのスクリーンショットをファイルに保存します。 | Saves a screenshot of the active browser window to a file |
WebDriver.cls | PrintToPDF | 現在のウェブページウィンドウを指定されたPDFファイルパスに出力します。 | Prints the current webpage window to a specified pdf file path |
WebDriver.cls | GetRect | 要素のx、y、幅、高さを含む辞書を返します。 | Returns a dictionary containing x, y, width, height of the element |
WebDriver.cls | GetPageSource | 現在のウェブページのソースを文字列として返します。 | Returns the current webpage source as a string |
WebDriver.cls | SwitchToFrame | フレーム要素にフォーカスを切り替えます。 | Switches focus to the frame element |
WebDriver.cls | SwitchToFrameByIndex | 指定されたインデックスで示されるフレームにフォーカスを切り替えます。 | Switches focus to the frame indicated by the specified index |
WebDriver.cls | SwitchToDefaultContent | メインドキュメントのフレームにフォーカスを切り替えます。 | Switches focus to the frame of the main document |
WebDriver.cls | SwitchToParentFrame | アクティブフレームの親にフォーカスを切り替えます。 | Switches focus to the active frame's parent |
WebDriver.cls | GetCurrentFrameName | アクティブフレームの名前を返します。 | Returns the name of the active frame |
WebDriver.cls | ImplicitMaxWait | 要素を検索するときに、要素検索戦略が完了するまでの待機時間を設定/取得します。 | Sets/Gets how long to wait for the element location strategy to complete when locating an element(s) |
WebDriver.cls | PageLoadTimeout | ナビゲーション試行を中断するために使用するタイムアウト制限を設定/取得します。 | Sets/Gets the timeout limit used to interrupt a navigation attempt |
WebDriver.cls | ScriptTimeout | 評価中のスクリプトを中断するまでの待機時間を設定/取得します。 | Sets/Gets how long to wait to interrupt a script that is being evaluated |
WebDriver.cls | Wait | 指定されたミリ秒数の間、インライン実行を一時停止します。 | Pauses in-line execution for the specified number of milliseconds |
WebDriver.cls | IsPresent | 要素が存在するかどうかを示すブール値を返します。ユーザーはオプションで暗黙的な待機時間を設定し、見つかった要素への参照を取得できます。 | Returns a boolean indicating if the element is present. User can optionally set an implicit wait, and obtain a reference to the found element. |
WebDriver.cls | IsEnabled | 要素が有効かどうかを示すブール値を返します | Returns a boolean indicating if the element is enabled |
WebDriver.cls | IsDisplayed | 要素が表示されているかどうかを示すブール値を返します | Returns a boolean indicating if the element is displayed |
WebDriver.cls | GetBrowserName | ブラウザ名を取得します | Gets the browser name |
WebDriver.cls | SwitchToAlert | アラートが表示されるまで待機し、その後の処理のために WebAlert オブジェクトを返します | Waits for alert to show and then returns a WebAlert object for further handling |
WebDriver.cls | IsAlertPresent | アクティブなアラートが存在するかどうかを示すブール値を返します | Returns a boolean indicating whether an active alert is present |
WebDriver.cls | Clear | 要素のテキストフィールドをクリアします | Clears the text field of the element |
WebDriver.cls | GetShadowRoot | 要素によってホストされているシャドウルートを取得します | Gets the shadow root hosted by the element |
WebDriver.cls | GetCSSProperty | 要素の指定された CSS プロパティを取得します | Gets the specified CSS property of the element |
WebDriver.cls | GetInnerHTML | 要素の内部 HTML を取得します | Gets the inner HTML of the element |
WebDriver.cls | GetOuterHTML | 要素の外部 HTML を取得します | Gets the outer HTML of the element |
WebDriver.cls | CreateCapabilities | 機能オブジェクトを作成します - Start* メソッドのいずれかを使用してドライバーを初期化した後に実行する必要があります | Creates a capabilities object - must be performed after initializing the driver using one of the Start* methods |
WebDriver.cls | CreateCookies | Cookie オブジェクトを作成します - Start* メソッドのいずれかを使用してドライバーを初期化した後に実行する必要があります | Creates a cookies object - must be performed after initializing the driver using one of the Start* methods |
WebDriver.cls | SetFocus | 指定された要素にフォーカスを設定します | Sets the focus to the specified element |
WebDriver.cls | HasFocus | 指定された要素にフォーカスがあるかどうかを示すブール値を返します | Returns a boolean indicating if the specified element has the focus |
WebDriver.cls | ScrollIntoView | 指定された要素までスクロールします | Scrolls to the element specified |
WebDriver.cls | ScrollBy | 現在のウィンドウの位置を基準としたピクセル単位の x-y オフセットまでスクロールします | Scrolls to a x-y offset in pixels relative to the current window position |
WebDriver.cls | ScrollTo | 現在のウィンドウのビューポートの原点を基準としたピクセル単位の x-y 座標位置までスクロールします | Scrolls to a x-y coordinate position in pixels relative to the current window viewport origin |
WebDriver.cls | ScrollToTop | 現在のウィンドウのビューポートまでスクロールしますorigin | Scrolls to the current window viewport origin |
WebDriver.cls | ScrollToBottom | 現在のウィンドウのビューポートの下部までスクロールします | Scrolls to the bottom of current window viewport |
WebDriver.cls | GetScrollHeight | 現在のウィンドウのビューポートの高さを取得します | Gets the heigth of the current window viewport |
WebDriver.cls | GetAllCookies | 現在のウェブページのCookieコレクションを返します | Returns the collection of cookies for the current webpage |
WebDriver.cls | GetCookie | 指定された名前のCookieを返します | Returns a cookie having the specified name |
WebDriver.cls | DeleteCookie | 指定された名前のCookieを削除します | Deletes a cookie having the specified name |
WebDriver.cls | SetCookie | Cookieオブジェクトを設定します | Sets a cookie object |
WebDriver.cls | SetCookies | Cookieコレクションオブジェクトを設定します | Sets a cookies collection object |
WebDriver.cls | DeleteAllCookies | すべてのCookieを削除します | Deletes all cookies |
WebDriver.cls | IsPageFound | 現在のURLが指定されたURLと等しいかどうかを確認します | Checks if the current url is equal to the specified url |
WebDriver.cls | GetSessionsInfo | セッションに関するさまざまな情報を含む辞書を返します | Returns a dictionary holding various info about the session |
WebDriver.cls | GetDriverStatus | ドライバーに関するさまざまな情報を含む辞書を返します | Returns a dictionary holding various info about the driver |
WebDriver.cls | ActionChain | 初期化されたアクションチェーンオブジェクトを作成します | Creates an initialized action chain object |
WebDriver.cls | FindElementFromShadowRoot | 指定されたセレクタと値を持つシャドウルートの最初の要素を検索します | Finds the first element in the shadow root for a given selector and value |
WebDriver.cls | FindElementsFromShadowRoot | 指定されたセレクタと値を持つシャドウルートのすべての要素を検索します | Finds all elements in the shadow root for a given selector and value |
WebDriver.cls | UploadFile | ファイルの内容を要素にアップロードします | Uploads the contents of a file to the element |
WebDriver.cls | DragAndDrop | 要素を指定されたターゲット要素にドラッグアンドドロップします | Drags and drops the element to the specified target element |
WebDriver.cls | WaitUntilDisplayed | 要素が表示されるまで待機します(インタラクション可能) | Waits until element is displayed (interactable) |
WebDriver.cls | WaitUntilNotDisplayed | 要素が表示されなくなるまで待機します(インタラクション不可) | Waits until element is not displayed (not interactable) |
WebDriver.cls | WaitForDownload | ファイルのダウンロードが完了するまで待機します | Waits until file is finished downloading |
WebDriver.cls | WaitUntilNotPresent | 要素がなくなるまで待機します | Waits until an element is not present anymore |
WebDriver.cls | GetUserAgent | ユーザーエージェント文字列を返します(OpenBrowser の後に呼び出す必要があります) | Returns the user agent string - must be called after OpenBrowser |
WebDriver.cls | DefaultIOFolder | デフォルトの入出力フォルダを設定/取得します | Sets/Gets the default input/output folder |
WebDriver.cls | DefaultDriverFolder | デフォルトの Selenium ドライバフォルダを設定/取得します | Sets/Gets the default Selenium driver folder |
WebDriver.cls | DeleteFiles | ファイルのリストを削除します | Deletes a list of files |
WebDriver.cls | SaveStringToFile | 指定された文字列をファイルに保存します | Saves a specified string to a file |
WebDriver.cls | GetParentElement | 要素の親を返します | Returns the parent of element |
WebDriver.cls | GetChildElements | 要素の直下の子要素を返します | Returns the direct descendant child elements of the element |
WebDriver.cls | TableToArray | テーブルまたは tbody 要素のテキスト値を含む配列を返します | Returns an array holding the text values from a table or tbody element |
WebDriver.cls | PageToHTMLDoc | Web ページを HTML ドキュメントオブジェクトに変換します(サニタイズを使用して、DOM ツリーをそのままにしてオンラインの動的コンテンツを削除します) | Converts webpage to an html document object - use sanitize to remove online dynamic content while leaving the dom tree intact |
WebDriver.cls | PageToXMLDoc | Web ページを XML ドキュメントオブジェクトに変換します | Converts webpage to an xml document object |
WebDriver.cls | PageToJSONObject | Web ページを JSON 辞書またはコレクションオブジェクトに変換します | Converts webpage to a json dictionary or collection object |
WebDriver.cls | PageToHTMLFile | Web ページを HTML ファイルに変換します(使用) DOMツリーはそのままに、オンラインの動的コンテンツを削除するサニタイズ機能 | Converts webpage to an html file - use sanitize to remove online dynamic content while leaving the dom tree intact |
WebDriver.cls | PageToXMLFile | WebページをXMLファイルに変換します | Converts webpage to an xml file |
WebDriver.cls | PageToJSONFile | WebページをJSONファイルに変換します | Converts webpage to a json file |
WebDriver.cls | PageToString | 現在のWebページのソースを文字列として返します | Returns the current webpage source as a string |
WebDriver.cls | SetGeolocation | 位置情報パラメータの値を設定します | Sets geolocation parameter values |
WebDriver.cls | GetGeolocation | 位置情報パラメータの値を辞書オブジェクトとして取得します | Gets geolocation parameter values as a dictionay object |
WebDriver.cls | CreateSettingsFile | オプションのINI設定ファイルを作成/更新します。keepExistingValuesをFalseに設定すると、既存の設定がシステムのデフォルトにリセットされます | Creates/updates the optional INI settings file - set keepExistingValues to False to reset existing settings to system defaults |
WebDriver.cls | DownloadResource | 要素属性に含まれるリソース(画像など)をファイルまたはフォルダパスにダウンロードします。フォルダが指定されている場合、ファイルはソースの名前を継承します | Downloads a resource (such as an image) contained in an element attribute to a file or folder path - if a folder is specified, then the file will inherit the name of the source |
WebDriver.cls | SaveBase64StringToFile | Base64エンコードされた文字列をバイナリ形式でファイルに保存します | Saves a base 64 encoded string to a file in binary format |
WebDriver.cls | ResolvePath | 入力パスの完全修飾パスを返します | Returns a fully qualified path for the input path |
WebDriver.cls | GetElementId | 指定された要素オブジェクトのID文字列を返します。テストに便利です | Returns the Id string of the specified element object - useful for testing purposes |
WebDriver.cls | Windows | 開いているすべてのWebWindowオブジェクトのコレクションを管理するためのWebWindowsオブジェクトを返します | Returns the WebWindows object for managing the collection of all open WebWindow objects |
WebDriver.cls | ActiveWindow | アクティブなWebWindowオブジェクトを返します | Returns the active WebWindow object |
WebDriver.cls | SetDownloadFolder | デフォルトのダウンロードフォルダパスを設定します(EdgeおよびChromeブラウザのみ) | Sets the default download folder path - for Edge and Chrome browsers only |
WebDriver.cls | InstallAddon | ブラウザアドオン(拡張機能)をインストールします.xpi ファイルなど - Firefox のみ | Installs a browser addon (extension) such as an an .xpi file - Firefox only |
WebDriverManager.cls | VB_Description | このクラスは、Selenium ドライバーとブラウザーのバージョンの整合性を維持するために使用されます | This class is used to maintain Selenium driver/browser version alignment |
WebDriverManager.cls | DefaultDriverFolder | デフォルトのドライバーフォルダーパスを設定します | Sets the default driver folder path |
WebDriverManager.cls | AlignEdgeDriverWithBrowser | ドライバーがインストールされているかどうか、またはインストールされているドライバーがインストールされているブラウザーと互換性があるかどうかを確認し、必要に応じて更新されたドライバーをインストールします | Checks if driver is installed, or if installed driver is compatibile with installed browser, and then installs an updated driver if needed |
WebDriverManager.cls | AlignChromeDriverWithBrowser | ドライバーがインストールされているかどうか、またはインストールされているドライバーがインストールされているブラウザーと互換性があるかどうかを確認し、必要に応じて更新されたドライバーをインストールします | Checks if driver is installed, or if installed driver is compatibile with installed browser, and then installs an updated driver if needed |
WebDriverManager.cls | AlignFirefoxDriverWithBrowser | ドライバーがインストールされているかどうか、またはインストールされているドライバーがインストールされているブラウザーと互換性があるかどうかを確認し、必要に応じて更新されたドライバーをインストールします | Checks if driver is installed, or if installed driver is compatibile with installed browser, and then installs an updated driver if needed |
WebDriverManager.cls | AlignIEDriverWithBrowser | ドライバーがインストールされているかどうか、またはインストールされているドライバーがインストールされているブラウザーと互換性があるかどうかを確認し、必要に応じて更新されたドライバーをインストールします | Checks if driver is installed, or if installed driver is compatibile with installed browser, and then if needed, installs an updated driver |
WebDriverManager.cls | GetInstalledDriverVersion | インストールされているドライバーのバージョンを返します | Returns the installed Driver version |
WebDriverManager.cls | CheckCompatibilityLevel | 2 つのバージョン文字列間の互換性レベルを返します | Returns the compatibility level between a pair of version strings |
WebDriverManager.cls | GetLatestDriverVersion | 最新のドライバーのバージョンを返します | Returns the latest Driver version |
WebDriverManager.cls | GetCompatibleDriverVersion | インストールされているブラウザーのバージョンに基づいて、最新の互換性のあるドライバーのバージョンを返します | Returns the most recent compatible Driver version given the installed Browser version |
WebDriverManager.cls | GetInstalledBrowserVersion | インストールされているブラウザーのバージョンを返します | Returns the installed Browser version |
WebDriverManager.cls | DownloadAndInstallDriver | 指定されたドライバーのバージョンをダウンロードしてインストールします | Downloads and installs the specified Driver version |
WebDriverManager.cls | GetSeleniumBasicFolderPath | ローカルにある Florent Breheret の SeleniumBasic アプリケーションへのフォルダーパスを返しますAppData(インストールされている場合) | Returns the folder path to Florent Breheret's SeleniumBasic application in local AppData, assuming that it is installed |
WebDriverManager.cls | GetUserTempFolderPath | ローカルAppData内のTempフォルダへのフォルダパスを返します | Returns the folder path to the Temp folder in local AppData |
WebDriverManager.cls | GetDownloadsFolderPath | ローカルダウンロードフォルダへのフォルダパスを返します | Returns the folder path to the local Downloads folder |
WebDriverManager.cls | DeleteEdgeDriver | 指定されたパスからEdgeドライバを削除します | Deletes the Edge Driver from the specified path |
WebDriverManager.cls | DeleteChromeDriver | 指定されたパスからChromeドライバを削除します | Deletes the Chrome Driver from the specified path |
WebDriverManager.cls | DeleteIEDriver | 指定されたパスからIEドライバを削除します | Deletes the IE Driver from the specified path |
WebDriverManager.cls | DeleteFirefoxDriver | 指定されたパスから Firefox ドライバーを削除します。 | Deletes the Firefox Driver from the specified path |
WebElement.cls | VB_Description | このクラスは、Web ページの HTML 要素をオブジェクトとして表現し、関連する要素に対してさまざまなアクションを実行するメカニズムを提供します。WebDriver の FindElement メソッドのいずれかを使用してインスタンス化する必要があります。 | This class provides a mechanism to represent webpage HTML elements as objects and perform various actions on the related elements - must be instantiated using one of WebDriver's FindElement methods |
WebElement.cls | SaveScreenshot | この要素のスクリーンショットを保存します。 | Saves a screenshot of this element |
WebElement.cls | FindElement | 指定されたセレクタと値の最初の要素を検索します。 | Finds the first element for a given selector and value |
WebElement.cls | FindElements | 指定されたセレクタと値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified selector and value |
WebElement.cls | FindElementByID | 指定された ID 値の最初の要素を検索します。 | Finds the first element by the specified id value |
WebElement.cls | FindElementByTagName | 指定されたタグ名の値の最初の要素を検索します。 | Finds the first element by the specified tag name value |
WebElement.cls | FindElementByClassName | 指定されたクラス名の値の最初の要素を検索します。 | Finds the first element by the specified class name value |
WebElement.cls | FindElementByCssSelector | 指定された CSS セレクタ値の最初の要素を検索します。 | Finds the first element by the specified css selector value |
WebElement.cls | QuerySelector | 指定された CSS セレクタ値の最初の要素を検索します。 | Finds the first element by the specified css selector value |
WebElement.cls | FindElementByLinkText | 指定されたリンクテキストの値の最初の要素を検索します。 | Finds the first element by the specified link text value |
WebElement.cls | FindElementByName | 指定された名前の値の最初の要素を検索します。 | Finds the first element by the specified name value |
WebElement.cls | FindElementByPartialLinkText | 指定された部分リンクテキストの値の最初の要素を検索します。 | Finds the first element by the specified partial link text value |
WebElement.cls | FindElementByXPath | 指定された XPath クエリ値の最初の要素を検索します。 | Finds the first element by the specified xpath query value |
WebElement.cls | FindElementsByXPath | 指定された XPath クエリ値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified xpath query value |
WebElement.cls | FindElementsByID | 指定された ID 値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified id value |
WebElement.cls | FindElementsByTagName | 指定されたタグ名の値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified tag name value |
WebElement.cls | FindElementsByClassName | 指定されたクラス名の値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified class name value |
WebElement.cls | FindElementsByCssSelector | 指定されたCSSセレクタの値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified css selector value |
WebElement.cls | QuerySelectorAll | 指定されたCSSセレクタの値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified css selector value |
WebElement.cls | FindElementsByLinkText | 指定されたリンクテキストの値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified link text value |
WebElement.cls | FindElementsByName | 指定された名前の値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified name value |
WebElement.cls | FindElementsByPartialLinkText | 指定された部分リンクテキストの値を満たすすべての要素を検索します。 | Finds all elements that satisfy the specified partial link text value |
WebElement.cls | IsPresent | 要素が存在するかどうかを示すブール値を返します。ユーザーはオプションで暗黙的な待機を設定し、見つかった要素への参照を取得できます。 | Returns a boolean indicating if the element is present. User can optionally set an implicit wait, and obtain a reference to the found element. |
WebElement.cls | SetAttribute | この要素の属性を設定します | Sets the attribute of this element |
WebElement.cls | SendKeys | この要素にキーシーケンスを送信します | Sends a key sequence to this element |
WebElement.cls | Click | この要素をクリックします | Clicks this element |
WebElement.cls | Submit | フォーム要素を送信します | Submits a form element |
WebElement.cls | GetText | この要素のテキストを取得します - オプションの visibleOnly を False に設定すると、非表示かどうかに関係なくテキストが返されます | Gets the text of this element - set optional visibleOnly to False to return text whether hidden or not |
WebElement.cls | GetProperty | この要素のプロパティの状態(入力ボックスの値など)を取得します - プロパティが存在しない場合は vbNullString を返します | Gets the property state of this element, such as the value of an input box - if the property does not exist, then it returns vbNullString |
WebElement.cls | HasProperty | この要素が指定されたプロパティを持つかどうかを示すブール値を返します | Returns a boolean indicating if this element has the specified property |
WebElement.cls | GetTagName | この要素のタグ名を取得します | Gets the Tag name of this element |
WebElement.cls | GetRect | この要素の x、y、幅、高さを含む辞書を返します | Returns a dictionary containing x, y, width, height of this element |
WebElement.cls | GetCSSProperty | この要素の指定された CSS プロパティを取得します | Gets the specified CSS property of this element |
WebElement.cls | HasAttribute | この要素が指定された属性を持つかどうかを示すブール値を返します | Returns a boolean indicating if this element has the specified attribute |
WebElement.cls | GetAttribute | この要素の指定された属性を取得します | Gets the specified attribute of this element |
WebElement.cls | GetAriaLabel | この要素の Arial ラベルを取得します | Gets the Arial label of this element |
WebElement.cls | GetAriaRole | この要素の Arial ロールを取得します | Gets the Arial role of this element |
WebElement.cls | Highlight | この要素を色で強調表示します | Highlights with color this element |
WebElement.cls | UnHighlight | この要素の強調表示を解除します | Unhighlights this element |
WebElement.cls | IsMultiSelect | この要素が複数選択ドロップダウンであるかどうかを示すブール値を返します | Returns a boolean indicating if this element is a multi-select dropdown |
WebElement.cls | IsSelected | このドロップダウンオプション要素が選択されているかどうかを示すブール値を返します | Returns a boolean indicating if this dropdown option element is selected |
WebElement.cls | SelectByValue | 指定された value 属性を持つドロップダウン オプション要素 | Selects a dropdown option element with the specified value attribute |
WebElement.cls | SelectByVisibleText | 指定された表示テキストを持つドロップダウン オプション要素を選択します | Selects a dropdown option element with the specified visible text |
WebElement.cls | SelectByIndex | 指定されたインデックスを持つドロップダウン オプション要素を選択します | Selects a dropdown option element with the specified index |
WebElement.cls | GetAllSelectedOptions | 選択されているすべてのドロップダウン オプション要素を返します | Returns all selected dropdown option elements |
WebElement.cls | GetSelectedOption | 最初に選択されているドロップダウン オプション要素を返します | Returns the first selected dropdown option element |
WebElement.cls | SelectAll | 複数選択ドロップダウン オプション要素をすべて選択します | Selects all multi-select dropdown option elements |
WebElement.cls | DeSelectAll | すべてのドロップダウン オプション要素を選択解除します | Deselects all dropdown option elements |
WebElement.cls | DeSelectByValue | 指定された value 属性を持つドロップダウン オプション要素を選択解除します | Deselects the dropdown option element having the specified value attribute |
WebElement.cls | DeSelectByVisibleText | 指定された表示テキストを持つドロップダウンオプション要素の選択を解除します。 | Deselects the dropdown option element having the specified visible text |
WebElement.cls | DeSelectByIndex | 指定されたインデックスのドロップダウンオプション要素の選択を解除します。 | Deselects a dropdown option element with the specified index |
WebElement.cls | SwitchToFrame | このフレーム要素に切り替えます。 | Switches to this frame element |
WebElement.cls | IsEnabled | この要素が有効かどうかを示すブール値を返します。 | Returns a boolean indicating if this element is enabled |
WebElement.cls | IsDisplayed | この要素が表示されているかどうかを示すブール値を返します。 | Returns a boolean indicating if this element is displayed |
WebElement.cls | Clear | この要素のテキストフィールドをクリアします。 | Clears the text field of this element |
WebElement.cls | GetInnerHTML | この要素の内部HTMLを取得します。 | Gets the inner HTML of this element |
WebElement.cls | GetOuterHTML | この要素の外部HTMLを取得します。 | Gets the outer HTML of this element |
WebElement.cls | SetFocus | この要素をスクロールしてフォーカスを設定します。 | Scrolls and set the focus to this element |
WebElement.cls | HasFocus | この要素にフォーカスがあるかどうかを示すブール値を返します。 | Returns a boolean indicating if the element has the focus |
WebElement.cls | ScrollIntoView | この要素までスクロールします。 | Scrolls to this element |
WebElement.cls | GetShadowRoot | この要素がホストするシャドウルートを取得します。 | Gets the shadow root hosted by this element |
WebElement.cls | DragAndDrop | この要素を指定されたターゲット要素にドラッグアンドドロップします。 | Drags and drops this element to the specified target element |
WebElement.cls | UploadFile | ファイルの内容をこの要素にアップロードします。 | Uploads the contents of a file to this element |
WebElement.cls | WaitUntilDisplayed | この要素が表示されるまで待機します(操作可能)。 | Waits until this element is displayed (interactable) |
WebElement.cls | WaitUntilNotDisplayed | この要素が表示されなくなるまで待機します(操作不可)。 | Waits until this element is not displayed (not interactable) |
WebElement.cls | GetParentElement | この要素の親要素を返します。 | Returns the parent of this element |
WebElement.cls | GetChildElements | この要素の直下の子孫要素を返します。 | Returns the direct descendant child elements of this element |
WebElement.cls | TableToArray | テーブルまたはtbody要素のテキスト値を含む配列を返します。 | Returns an array holding the text values from a table or tbody element |
WebElement.cls | DownloadResource | 画像などのリソースをダウンロードします。要素属性からファイルまたはフォルダのパスへ - フォルダが指定されている場合、ファイルはソースの名前を継承します | Downloads a resource (such as an image) contained in an element attribute to a file or folder path - if a folder is specified, then the file will inherit the name of the source |
WebElement.cls | GetElementId | 要素ID文字列を返します - テストに便利です | Returns the Element Id string - useful for testing purposes |
WebElements.cls | VB_Description | このクラスは、WebElementオブジェクトのコレクションを管理するために使用されます | This class is used for managing a collection of WebElement objects |
WebElements.cls | Add | コレクションに要素を追加します | Adds an element to the collection |
WebElements.cls | Count | コレクション内の要素の数を返します | Returns the number of elements in the collection |
WebElements.cls | Size | コレクション内の要素の数を返します | Returns the number of elements in the collection |
WebElements.cls | Remove | 指定されたインデックスまたは要素オブジェクトに対応する要素を削除します | Removes an element corresponding to the given index or element object |
WebElements.cls | Item | 指定されたインデックスに対応する要素を返します | Returns the element corresponding to the given index |
WebElements.cls | Exists | 要素オブジェクトが既にコレクション内に存在する場合はTrueを、そうでない場合はFalseを返します | Returns True if element object is already in the collection, False otherwise |
WebElements.cls | RemoveAll | コレクションからすべてのメンバー要素オブジェクトを削除します | Removes all member element objects from the collection |
WebElements.cls | Highlight | この要素コレクションを色で強調表示します | Highlights this element collection with color |
WebElements.cls | UnHighlight | この要素コレクションの強調表示を解除します | Unhighlights this element collection |
WebKeyboard.cls | VB_Description | このクラスは、キーボード操作を自動化するために使用されます | This class is used to automate keyboard actions |
WebKeyboard.cls | NullKey | Null (\uE000) キーを返します - 文字列内で使用されている以前のすべての修飾子を解放します | Returns the Null (\uE000) key - triggers release of all previous modifiers used in the string |
WebKeyboard.cls | CancelKey | Cancel (\uE001) キーを返します | Returns the Cancel (\uE001) key |
WebKeyboard.cls | HelpKey | Help (\uE002) キーを返します | Returns the Help (\uE002) key |
WebKeyboard.cls | BackspaceKey | Backspace (\uE003) キーを返しますキー | Returns the Backspace (\uE003) key |
WebKeyboard.cls | TabKey | Tab (\uE004) キーを返します | Returns the Tab (\uE004) key |
WebKeyboard.cls | ClearKey | Clear (\uE005) キーを返します | Returns the Clear (\uE005) key |
WebKeyboard.cls | ReturnKey | Return (\uE006) キーを返します | Returns the Return (\uE006) key |
WebKeyboard.cls | EnterKey | Enter (\uE007) キ??ーを返します | Returns the Enter (\uE007) key |
WebKeyboard.cls | ShiftKey | Shift (\uE008) キーを返します | Returns the Shift (\uE008) key |
WebKeyboard.cls | CtrlKey | Ctrl (\uE009) キーを返します | Returns the Ctrl (\uE009) key |
WebKeyboard.cls | AltKey | Alt (\uE00a) キーを返します | Returns the Alt (\uE00a) key |
WebKeyboard.cls | PauseKey | Pause (\uE00b) キーを返します | Returns the Pause (\uE00b) key |
WebKeyboard.cls | EscapeKey | Escape (\uE00c) キーを返します | Returns the Escape (\uE00c) key |
WebKeyboard.cls | SpaceKey | Space (\uE00d) キーを返します | Returns the Space (\uE00d) key |
WebKeyboard.cls | PageUpKey | PageUp (\uE00e) キーを返します | Returns the PageUp (\uE00e) key |
WebKeyboard.cls | PageDownKey | PageDown (\uE00f) キーを返します | Returns the PageDown (\uE00f) key |
WebKeyboard.cls | EndKey | End (\uE010) キーを返します | Returns the End (\uE010) key |
WebKeyboard.cls | HomeKey | Home (\uE011) キーを返します | Returns the Home (\uE011) key |
WebKeyboard.cls | LeftKey | 左 (\uE012) キーを返します | Returns the Left (\uE012) key |
WebKeyboard.cls | UpKey | 上 (\uE013) キーを返します | Returns the Up (\uE013) key |
WebKeyboard.cls | RightKey | 右 (\uE014) キーを返します | Returns the Right (\uE014) key |
WebKeyboard.cls | DownKey | 下 (\uE015) キーを返します | Returns the Down (\uE015) key |
WebKeyboard.cls | InsertKey | Insert (\uE016) キーを返します | Returns the Insert (\uE016) key |
WebKeyboard.cls | DeleteKey | Delete (\uE017) キーを返します | Returns the Delete (\uE017) key |
WebKeyboard.cls | SemicolonKey | セミコロン (\uE018) キーを返します | Returns the Semicolon (\uE018) key |
WebKeyboard.cls | EqualsKey | イコール (\uE019) キーを返します | Returns the Equals (\uE019) key |
WebKeyboard.cls | Numpad0Key | テンキーの 0 (\uE01a) キーを返します | Returns the Numpad 0 (\uE01a) key |
WebKeyboard.cls | Numpad1Key | テンキーの 1 (\uE01b) キーを返します | Returns the Numpad 1 (\uE01b) key |
WebKeyboard.cls | Numpad2Key | テンキーの 2 (\uE01c) キーを返します | Returns the Numpad 2 (\uE01c) key |
WebKeyboard.cls | Numpad3Key | テンキーの 3 (\uE01d) キーを返します | Returns the Numpad 3 (\uE01d) key |
WebKeyboard.cls | Numpad4Key | テンキーの 4 (\uE01e) キーを返します | Returns the Numpad 4 (\uE01e) key |
WebKeyboard.cls | Numpad5Key | テンキーの 5 (\uE01e) キーを返します(\uE01f) キー | Returns the Numpad 5 (\uE01f) key |
WebKeyboard.cls | Numpad6Key | テンキーの 6 (\uE020) キーを返します | Returns the Numpad 6 (\uE020) key |
WebKeyboard.cls | Numpad7Key | テンキーの 7 (\uE021) キーを返します | Returns the Numpad 7 (\uE021) key |
WebKeyboard.cls | Numpad8Key | テンキーの 8 (\uE022) キーを返します | Returns the Numpad 8 (\uE022) key |
WebKeyboard.cls | Numpad9Key | テンキーの 9 (\uE023) キーを返します | Returns the Numpad 9 (\uE023) key |
WebKeyboard.cls | MultiplyKey | 乗算 (\uE024) キーを返します | Returns the Multiply (\uE024) key |
WebKeyboard.cls | AddKey | 加算 (\uE025) キーを返します | Returns the Add (\uE025) key |
WebKeyboard.cls | SeparatorKey | 区切り (\uE026) キーを返します | Returns the Separator (\uE026) key |
WebKeyboard.cls | SubtractKey | 減算 (\uE027) キーを返します | Returns the Subtract (\uE027) key |
WebKeyboard.cls | DecimalKey | 小数 (\uE028) キーを返します | Returns the Decimal (\uE028) key |
WebKeyboard.cls | DivideKey | 除算 (\uE029) キーを返します | Returns the Divide (\uE029) key |
WebKeyboard.cls | F1Key | F1 (\uE031) キーを返します | Returns the F1 (\uE031) key |
WebKeyboard.cls | F2Key | F2 (\uE032) キーを返します | Returns the F2 (\uE032) key |
WebKeyboard.cls | F3Key | F3 (\uE033) キーを返しますキー | Returns the F3 (\uE033) key |
WebKeyboard.cls | F4Key | F4 (\uE034) キーを返します | Returns the F4 (\uE034) key |
WebKeyboard.cls | F5Key | F5 (\uE035) キーを返します | Returns the F5 (\uE035) key |
WebKeyboard.cls | F6Key | F6 (\uE036) キーを返します | Returns the F6 (\uE036) key |
WebKeyboard.cls | F7Key | F7 (\uE037) キーを返します | Returns the F7 (\uE037) key |
WebKeyboard.cls | F8Key | F8 (\uE038) キーを返します | Returns the F8 (\uE038) key |
WebKeyboard.cls | F9Key | F9 (\uE039) キーを返します | Returns the F9 (\uE039) key |
WebKeyboard.cls | F10Key | F10 (\uE03a) キーを返します | Returns the F10 (\uE03a) key |
WebKeyboard.cls | F11Key | F11 (\uE03b) キーを返します | Returns the F11 (\uE03b) key |
WebKeyboard.cls | F12Key | F12 (\uE03c) キーを返します | Returns the F12 (\uE03c) key |
WebKeyboard.cls | MetaKey | Meta (\uE03d) キーを返します | Returns the Meta (\uE03d) key |
WebKeyboard.cls | CommandKey | Command (\uE03d) キーを返します | Returns the Command (\uE03d) key |
WebKeyboard.cls | ZenkakuHankakuKey | 日本語キーボードの全角半角変換キー (\uE040) を返します | Returns the Zenkaku to Hankaku (\uE040) key for Japanese keyboard |
WebKeyboard.cls | CtrlShiftKeys | CtrlShift (\uE009 + \uE008) キーを返します | Returns the CtrlShift (\uE009 + \uE008) keys |
WebKeyboard.cls | AltShiftKeys | AltShift (\uE00a + \uE008) キー | Returns the AltShift (\uE00a + \uE008) keys |
WebKeyboard.cls | CtrlAltKeys | CtrlAlt (\uE009 + \uE00a) キーを返します | Returns the CtrlAlt (\uE009 + \uE00a) keys |
WebKeyboard.cls | Chord | 修飾キーの押下、送信するキー、修飾キーの解除のシーケンスを返します | Returns modifier key(s) down, keys to send, modifier key(s) up sequence |
WebKeyboard.cls | Repeat | 指定された回数だけ繰り返される部分文字列からなる文字列を返します | Returns a string consisting of a sub-string repeated the specified number of times |
WebPrintSettings.cls | VB_Description | このクラスは、WebDriver クラスの PrintToPDF メソッドを使用して PDF ファイルを生成する際の印刷設定を管理するために使用されます | This class is used to manage print settings for generating pdf files using PrintToPDF method of the WebDriver class |
WebPrintSettings.cls | Units | 測定単位をセンチメートルまたはインチで設定または取得します | Sets or gets the measurement units in centimeters or inches |
WebPrintSettings.cls | MarginBottom | 下余白を設定または取得します | Sets or gets the bottom margin |
WebPrintSettings.cls | MarginTop | 上余白を設定または取得します | Sets or gets the top margin |
WebPrintSettings.cls | MarginLeft | 左余白を設定または取得します | Sets or gets the left margin |
WebPrintSettings.cls | MarginRight | 右余白を設定または取得します | Sets or gets the right margin |
WebPrintSettings.cls | MarginsAll | すべての余白を同じ値に設定します | Sets all margins to same value |
WebPrintSettings.cls | PageHeight | ページの高さを設定または取得します | Sets or gets the page height |
WebPrintSettings.cls | PageWidth | ページの幅を設定または取得します | Sets or gets the page width |
WebPrintSettings.cls | Background | 背景プロパティを設定または取得します | Sets or gets the background property |
WebPrintSettings.cls | Orientation | ページの向きを設定または取得します | Sets or gets the page orientation |
WebPrintSettings.cls | PageRanges | 印刷するページとページ範囲のリストを設定します | Sets a list of pages and page ranges to print |
WebPrintSettings.cls | PrintScale | 印刷スケール(小数)を設定または取得します | Sets or gets the print scale (fractional) |
WebPrintSettings.cls | ShrinkToFit | 縮小してフィットするプロパティを設定または取得します | Sets or gets the shrink-to-fit property |
WebShadowRoot.cls | VB_Description | このクラスは、ドキュメントのメインDOMツリーとは別にレンダリングされるシャドウルートDOMサブツリーを公開するために使用されます - WebDriverのGetShadowRootメソッドを使用してインスタンス化する必要があります | This class is used for exposing a shadow root DOM subtree that is rendered separately from a document's main DOM tree - must be instantiated using WebDriver's GetShadowRoot method |
WebShadowRoot.cls | FindElement | 指定されたセレクタと値の最初の要素を検索します | Finds the first element for a given selector and value |
WebShadowRoot.cls | FindElements | 指定されたセレクタと値を満たすすべての要素を検索します | Finds all elements that satisfy the specified selector and value |
WebWindow.cls | VB_Description | このクラスはブラウザウィンドウを管理するために使用されます - WebDriverのActiveWindowメソッドまたはWebWindowsオブジェクトを使用してインスタンス化する必要があります | This class is used to manage the browser window - must be instantiated WebDriver's ActiveWindow method, or through the WebWindows object |
WebWindow.cls | Activate | このウィンドウをアクティブにします | Activates this window |
WebWindow.cls | SwitchTo | このウィンドウをアクティブにします | Activates this window |
WebWindow.cls | IsActive | このウィンドウがアクティブウィンドウかどうかを示すブール値を返します | Returns a boolean value indicating whether this window is the active window |
WebWindow.cls | CloseIt | このウィンドウを閉じます | Closes this window |
WebWindow.cls | Title | このウィンドウのブラウザタイトルを取得します | Gets this window's browser title |
WebWindow.cls | Url | このウィンドウのURLを取得します | Gets this window's url |
WebWindow.cls | getWindowAttribute | このウィンドウの属性 | Gets this window's attribute |
WebWindow.cls | Bounds | このウィンドウのx、y、幅、高さを画面ピクセル単位で指定する辞書オブジェクトを設定/返します。 | Sets/Returns a dictionary object specifying the x, y, width, and height of this window in screen pixels |
WebWindow.cls | SetSize | このウィンドウのサイズを画面ピクセル単位で設定します。 | Sets the size for this window in screen pixels |
WebWindow.cls | SetPosition | このウィンドウの位置を画面ピクセル単位で設定します。 | Sets the position for this window in screen pixels |
WebWindow.cls | Maximize | このウィンドウを最大化します。 | Maximize this window |
WebWindow.cls | FullScreen | このウィンドウを全画面モードに設定します。 | Sets this window to full screen mode |
WebWindow.cls | Minimize | このウィンドウを最小化します。 | Minimize this window |
WebWindow.cls | IsSameAs | 指定されたウィンドウがこのウィンドウと同じかどうかを示すブール値を返します。 | Returns boolean indicating whether the specified window is same as this window |
WebWindow.cls | IsNotSameAs | 指定されたウィンドウがこのウィンドウと異なるかどうかを示すブール値を返します。 | Returns boolean indicating whether the specified window is not the same as this window |
WebWindow.cls | Handle | このウィンドウの内部ハンドル文字列を返します。 | Returns this window's internal handle string |
WebWindows.cls | VB_Description | このクラスは、WebWindow オブジェクトのコレクションを管理するために使用されます。WebDriver の Windows メソッドを使用してインスタンス化する必要があります。 | This class is used to manage a collection of WebWindow objects - must be instantiated using WebDriver's Windows method |
WebWindows.cls | SwitchToNew | 指定されたタイプの新しいウィンドウを開き、アクティブ化し、返します。 | Opens, activates, and returns a new window of the specified type |
WebWindows.cls | SwitchToByTitle | アクティブウィンドウの後に見つかった最初のウィンドウを、指定された(部分的な)ウィンドウタイトルテキストでアクティブ化し、返します。 | Activates and returns the first window found after the active window with the specified (partial) window title text |
WebWindows.cls | SwitchToByUrl | アクティブウィンドウの後に見つかった最初のウィンドウを、指定された(部分的な)ウィンドウ URL テキストでアクティブ化し、返します。 | Activates and returns the first window found after the active window with the specified (partial) window url text |
WebWindows.cls | switchToBy | アクティブウィンドウの後に見つかった最初のウィンドウを、指定された(部分的な)ウィンドウ属性テキストでアクティブ化し、返します。 | Activates and returns the first window found after the active window with the specified (partial) window attribute text |
WebWindows.cls | SwitchToNext | アクティブウィンドウの後に見つかった最初のウィンドウを、指定された(部分的な)ウィンドウ属性テキストでアクティブ化し、返します。開いているウィンドウのコレクション | Activates and returns the first window found after the active one in the open windows collection |
WebWindows.cls | Active | アクティブなウィンドウオブジェクトを返します | Returns the active window object |
WebWindows.cls | Handles | 開いているウィンドウハンドルのコレクションを返します | Returns the collection of open window handles |
WebWindows.cls | Titles | 開いているウィンドウのタイトルのコレクションを返します | Returns the collection of open window titles |
WebWindows.cls | Urls | 開いているウィンドウのURLのコレクションを返します | Returns the collection of open window urls |
WebWindows.cls | Refresh | 現在開いているすべてのウィンドウでウィンドウコレクションを更新します | Refreshes the windows collection with all currently open windows |
WebWindows.cls | Count | コレクション内のウィンドウの数を返します | Returns the number of windows in the collection |
WebWindows.cls | Item | 指定されたインデックスまたはハンドルに関連付けられたウィンドウを返します | Returns the window associated with the provided index or handle |