Refresh Webpage trong Selenium

Refresh Webpage trong Selenium
Image_refresh_icon

Có rất nhiều các để refresh một trang web trong Selenium Webdriver. Trong bài viết này, chúng ta sẽ tìm hiểu có những cách nào để refresh trang web.

1. Using driver.navigate() command

Chúng ta sẽ sử dụng lệnh navigate() để gọi tới lệnh refresh() trang web. Đây là cách được sử dụng phổ biến nhất khi làm việc với Selenium WebDriver

				
					driver.navigate().refresh();

				
			

2. Opening current URL using driver.getCurrentUrl() with driver.get() command

				
					driver.get(driver.getCurrentUrl());

				
			

3. Opening current URL using driver.getCurrentUrl() with driver.navigate() command

				
					driver.navigate().to(driver.getCurrentUrl());


				
			

4. Pressing F5 key on any textbox using sendKeys command

				
					driver.findElement(By textboxLocator).sendKeys(Keys.F5);

				
			

5. Passing ascii value of F5 key i.e. “\uE035” using sendKeys command

				
					driver.findElement(By textboxLocator).sendKeys("\uE035");