com.vaadin.flow.component.upload.testbench.

Class UploadElement

    • Constructor Detail

      • UploadElement

        public UploadElement()
    • Method Detail

      • upload

        public void upload(File file)

        Uploads the given local file and waits for 60s for the upload to finish.

        Note that Safari webdriver does not support file uploads.

        Parameters:

        file - a reference to the local file to upload

      • upload

        public void upload(File file,
                           int maxSeconds)

        Uploads the given local file and waits for the given number of seconds for the upload to finish.

        Note that Safari webdriver does not support file uploads.

        Parameters:

        file - the local file to upload

        maxSeconds - the number of seconds to wait for the upload to finish or 0 not to wait

      • getMaxFiles

        public int getMaxFiles()

        Gets how many files can be uploaded.

        Returns:

        the number of files which can be uploaded

      • isMaxFilesReached

        public boolean isMaxFilesReached()

        Checks whether the maximum number of files has been uploaded.

        Returns:

        true if no more files can be uploaded, false otherwise

      • abort

        public void abort()

        Aborts any upload currently in progress.