Table of Contents

Class ImeSetCompositionCommandSettings

Namespace
OpenQA.Selenium.DevTools.V148.Input
Assembly
Selenium.WebDriver.dll

This method sets the current candidate text for IME. Use imeCommitComposition to commit the final text. Use imeSetComposition with empty string as text to cancel composition.

public sealed class ImeSetCompositionCommandSettings : ICommand
Inheritance
ImeSetCompositionCommandSettings
Implements
Inherited Members

Properties

CommandName

Gets the name of the command.

[JsonIgnore]
public string CommandName { get; }

Property Value

string

ReplacementEnd

replacement end

[JsonPropertyName("replacementEnd")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? ReplacementEnd { get; set; }

Property Value

long?

ReplacementStart

replacement start

[JsonPropertyName("replacementStart")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? ReplacementStart { get; set; }

Property Value

long?

SelectionEnd

selection end

[JsonPropertyName("selectionEnd")]
public long SelectionEnd { get; set; }

Property Value

long

SelectionStart

selection start

[JsonPropertyName("selectionStart")]
public long SelectionStart { get; set; }

Property Value

long

Text

The text to insert

[JsonPropertyName("text")]
public string Text { get; set; }

Property Value

string