All Downloads are FREE. Search and download functionalities are using the official Maven repository.

uillian.extension.arquillian-drone-selenium-server.2.0.1.Final.source-code.simple-extension.js Maven / Gradle / Ivy

The newest version!
Selenium.prototype.doTypeRepeated = function(locator, text) {
	// All locator-strategies are automatically handled by "findElement"
	var element = this.page().findElement(locator);

	// Create the text to type
	var valueToType = text + text;

	// Replace the element text with the new text
	this.page().replaceText(element, valueToType);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy