-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTest4.java
More file actions
27 lines (21 loc) · 820 Bytes
/
Test4.java
File metadata and controls
27 lines (21 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package javascriptexecutor;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.Test;
import io.github.bonigarcia.wdm.WebDriverManager;
public class Test4 {
@Test
public void demo() throws InterruptedException {
WebDriverManager.chromedriver().setup();
WebDriver driver=new ChromeDriver();
driver.manage().window().maximize();
driver.get("file:///C:/Users/QSP/Documents/June%20Batches/Advance%20selenium_3clk/disabledelemene.html");
JavascriptExecutor js=(JavascriptExecutor) driver;
//eneter the value
js.executeScript("document.getElementById('abc').value='qspiders'");
Thread.sleep(3000);
//clear the value
js.executeScript("document.getElementById('abc').value=''");
}
}