com.sdl.selenium.extreact.button.DownloadButton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Testy Show documentation
Show all versions of Testy Show documentation
Automated Acceptance Testing. Selenium and Selenium WebDriver test framework for web applications.
(optimized for dynamic html, ExtJS, Bootstrap, complex UI, simple web applications/sites)
The newest version!
package com.sdl.selenium.extreact.button;
import com.sdl.selenium.bootstrap.button.Download;
import com.sdl.selenium.web.SearchType;
import com.sdl.selenium.web.WebLocator;
public class DownloadButton extends SplitButton implements Download {
public DownloadButton() {
setClassName("DownloadButton");
}
public DownloadButton(WebLocator container) {
this();
setContainer(container);
}
public DownloadButton(WebLocator container, String text, SearchType... searchTypes) {
this(container);
if (searchTypes.length == 0) {
searchTypes = new SearchType[]{SearchType.EQUALS};
}
setText(text, searchTypes);
}
/**
* if WebDriverConfig.isSilentDownload() is true, se face silentDownload, is is false se face download with AutoIT.
* Download file with AutoIT, works only on FireFox. SilentDownload works FireFox and Chrome
* Use only this: button.download("C:\\TestSet.tmx");
* return true if the downloaded file is the same one that is meant to be downloaded, otherwise returns false.
*
* @param fileName e.g. "TestSet.tmx"
*/
@Override
public boolean download(String fileName) {
openBrowse();
return executor.download(fileName, 10000L);
}
/**
* if WebDriverConfig.isSilentDownload() is true, se face silentDownload, is is false se face download with AutoIT.
*
* @param name e.g. TBX
* @param fileName e.g. "TestSet.tmx"
* @return true if the downloaded file is the same one that is meant to be downloaded, otherwise returns false.
*/
public boolean downloadFromMenu(String name, String fileName) {
clickOnMenu(name);
return executor.download(fileName, 10000L);
}
private void openBrowse() {
executor.browse(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy