
org.openqa.selenium.htmlunit.InputKeysContainer Maven / Gradle / Ivy
/*
Copyright 2012 Selenium committers
Copyright 2012 Software Freedom Conservancy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.openqa.selenium.htmlunit;
import static org.openqa.selenium.Keys.ENTER;
import static org.openqa.selenium.Keys.RETURN;
/**
* Converts a group of character sequences to a string to be sent by sendKeys.
*
*/
public class InputKeysContainer {
private final StringBuilder builder = new StringBuilder();
private final boolean submitKeyFound;
private boolean capitalize = false;
public InputKeysContainer(CharSequence... sequences) {
this(false, sequences);
}
public InputKeysContainer(boolean trimPastEnterKey, CharSequence... sequences) {
for (CharSequence seq : sequences) {
builder.append(seq);
}
int indexOfSubmitKey = indexOfSubmitKey();
submitKeyFound = (indexOfSubmitKey != -1);
// If inputting keys to an input element, and the string contains one of
// ENTER or RETURN, break the string at that point and submit the form
if (trimPastEnterKey && (indexOfSubmitKey != -1)) {
builder.delete(indexOfSubmitKey, builder.length());
}
}
private int indexOfSubmitKey() {
CharSequence[] terminators = {"\n", ENTER, RETURN};
for (CharSequence terminator : terminators) {
String needle = String.valueOf(terminator);
int index = builder.indexOf(needle);
if (index != -1) {
return index;
}
}
return -1;
}
@Override
public String toString() {
String toReturn = builder.toString();
toReturn = toReturn.replaceAll(ENTER.toString(), "\r");
toReturn = toReturn.replaceAll(RETURN.toString(), "\r");
if (capitalize) {
return toReturn.toUpperCase();
}
return toReturn;
}
public boolean wasSubmitKeyFound() {
return submitKeyFound;
}
public void setCapitalization(boolean capitalize) {
this.capitalize = capitalize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy