*Best explanation* ever for selenium... Keep uploading more such automation testing videos ❤❤❤❤❤ mam
@nirmalak35978 ай бұрын
Superb
@akashwanere59562 жыл бұрын
Good Job.. 👍🏻
@codestudioByPrachi2 жыл бұрын
Thank you!
@fahadkhan-islamicspiritual78728 ай бұрын
Madam Yiu told us that we can use sendkeys if type= file is given or robot class. Then why we need this ?
@knwrtv25446 ай бұрын
Kahda spiritual yarrr tu 😂😂😂. Common sense 😜😜
@surajshelke3078 Жыл бұрын
Can we use send method to and robot class here?
@tanmoypaul25132 жыл бұрын
In the upload button if I inspect there is type='text' and value='photo' and I used this both attributes in xpath axes and it was focused to that button but when I used sendkeys method through the file path, it wasn't able to upload the file and no error is showing...why? Robotclass isn't also working
@nupurjain86602 жыл бұрын
Thank you
@kshipra45042 жыл бұрын
When I run the program, auto it.exe disappears from the folder. Why is this happening?
@codestudioByPrachi2 жыл бұрын
re-installing may solve the problem. Please try it.
@11223a3b2 жыл бұрын
Super
@codestudioByPrachi2 жыл бұрын
Thank you!
@pankajkumar-zf2yg4 ай бұрын
AutoIT is open source and need to purchase the license?
@codestudioByPrachi4 ай бұрын
It is free
@techgurusrk2 жыл бұрын
not working with open button please help me out
@shty4891 Жыл бұрын
Mam please make appium tutorial
@ashwiniatakari2 жыл бұрын
Not run.
@saurabh2033 Жыл бұрын
Hello, Mam Im Trying to run my code but I got a message as Runtime.getRuntime().exec is deprecated so can you help me with it. any alternative method. I'm stuck. package MavenProject.Test1; import org.openqa.selenium.chrome.*; import java.io.IOException; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.interactions.Actions; public class FileUploadAutoIT { @SuppressWarnings("deprecation") public static void main(String[] args) { //Launch Chrome browser System.setProperty("webdriver.chrome.driver", "D:\\AutomationPractice\\Drivers\\chromedriver.exe"); WebDriver driver = new ChromeDriver(); //Maximize browser driver.manage().window().maximize(); //open URL driver.get("the-internet.herokuapp.com/upload"); //find webelement WebElement button = driver.findElement(By.id("file-upload")); Actions act = new Actions(driver); act.moveToElement(button).click().perform(); try { Runtime.getRuntime().exec("D://FileUpload.exe" +" "+"D://saurabh//ReverseString.txt"); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }