1Selenium执行操作时高亮对象

Posted zengfh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1Selenium执行操作时高亮对象相关的知识,希望对你有一定的参考价值。

package com.zengfh.testcase;


import org.openqa.selenium.By;
import org.openqa.selenium.javascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;


import com.zengfh.Demo.JavaScriptExcutor;


public class TestHighLightWebElement {
public WebDriver driver;
private String url="http://www.sogou.com";
public JavascriptExecutor js;

@BeforeMethod
public void setUp(){
driver=new FirefoxDriver();
driver.get(url);

}


@AfterMethod
public void tearDown(){
driver.close();
}

 

@Test
public void testHighLigthWebdriver(){
WebElement searchInput=driver.findElement(By.id("query"));
WebElement submitButton=driver.findElement(By.id("stb"));
highLightElement(searchInput);
searchInput.sendKeys("Good");
highLightElement(submitButton);
submitButton.click();

}

public void highLightElement(WebElement element){
js=(JavascriptExecutor) driver;
for (int i = 0; i < 3; i++) {

js.executeScript("arguments[0].setAttribute(‘style‘,arguments[1]);", element,"background:yellow ;border:3px solid green;");
try {
Thread.sleep(1000);
js.executeScript("arguments[0].removeAttribute(‘style‘,arguments[1]);", element,"background:yellow ;border:3px solid green;");
} catch (Exception e) {

}
}

}

}

以上是关于1Selenium执行操作时高亮对象的主要内容,如果未能解决你的问题,请参考以下文章

seleniu 元素定位与操作

Button离开高亮状态时调用方法

selenium--1selenium ide 的下载

oeasy教您玩转vim - 89 - # 高亮细节Highlight

VIM 适用于 LOG 文件的语法高亮配置

python+selenium高亮显示正在操作的页面元素