`

Selenium codes

 
阅读更多
1)
//div[normalize-space(@class)='x-menu x-menu-floating x-layer']
equals
//div[@class='x-menu x-menu-floating x-layer' or @class='x-menu x-menu-floating x-layer ']

2)Double click

protected RemoteWebDriver webdriver ;
public void doubleClickElement(String xpath){
Actions actions = new Actions(webdriver); 
WebElement we = webdriver.findElement(By.xpath(xpath));
waitForElementPresent(By.xpath(xpath), 20);
Action action = actions.doubleClick(we).build();
    action.perform();
}

3) move to element

public void moveToElement(String xpath){
Actions actions = new Actions(webdriver); 
WebElement we = webdriver.findElement(By.xpath(xpath));
waitForElementPresent(By.xpath(xpath), 20);
Action action = actions.moveToElement(we).build();
    action.perform();
}

4) click element

public void clickElement(String xpath){
Actions actions = new Actions(webdriver); 
WebElement we = webdriver.findElement(By.xpath(xpath));
waitForElementPresent(By.xpath(xpath), 20);
Action action = actions.click(we).build();
    action.perform();
}

5) Wait for element

public void watiForElementDisabled(String Xpath) throws InterruptedException{
boolean ablibity = true;
while(ablibity){
try{
webdriver.findElement(By.xpath(Xpath));
Thread.sleep(10);
}catch(Exception e){
ablibity = false;
}

}
}

6)wait for element disabled

public void watiForElementDisabled(String Xpath) throws InterruptedException{
boolean ablibity = true;
while(ablibity){
try{
webdriver.findElement(By.xpath(Xpath));
Thread.sleep(10);
}catch(Exception e){
ablibity = false;
}

}
}
分享到:
评论

相关推荐

    Selenium-Codes:存放我的Selenium WebDriver自动化脚本的存储库

    在这个名为 "Selenium-Codes" 的存储库中,我们很显然会发现一系列使用 Java 编写的 Selenium WebDriver 脚本。 WebDriver 是 Selenium 的一个重要组成部分,它提供了一个直接与浏览器进行交互的 API。WebDriver ...

    python+selenium3+unittest项目实战WebUI.zip

    Python+Selenium3+Unittest是自动化测试领域中一个常见的组合,尤其在Web应用程序的UI测试中,这三者发挥着至关重要的作用。Python是一种高级编程语言,以其简洁、易读的语法深受程序员喜爱,尤其适合编写自动化测试...

    selenium-chromedriver兼容 68~70

    Resolved issue 2552: Some error codes are not standard compliant [[Pri-2]] Resolved issue 669: console.log with multiple arguments not handled properly [[Pri-2]] Resolved issue 2545: Getting "unknown ...

    WhatsApp-bot-selenium-master_python_

    laregest programming library!}Now we have 3610000 source codes and documents267 directories

    Selenium WebDriver Practical Guide-Code

    《Selenium WebDriver 实践指南-代码》是一个针对自动化测试工程师的宝贵资源,它包含了实际操作中的Selenium WebDriver的源代码示例。Selenium WebDriver是一个强大的工具集,用于自动化Web浏览器,支持多种编程...

    douban_codes_爬虫python_爬虫_数据电影_

    同时,许多网站都有反爬机制,如验证码、IP限制等,我们需要采取措施,如设置User-Agent、使用代理IP,或者使用像Selenium这样的浏览器自动化工具来应对。 2. **数据解析**:不同的网页结构决定了数据的解析方式。...

    Practice_python_codes

    10. **自动化任务**:如使用schedule库定时执行任务,或者使用selenium库进行网页自动化测试。 每个子文件可能代表一个特定的主题或问题的解决方案,通过这些代码,学习者可以加深对Python语言的理解,提高编程技巧...

    R-Codes:从Burpple和Tripadvisor进行Web爬网,数据分析和预测模型

    RSelenium软件包速度较慢,但​​可以通过模仿浏览器来解决上述问题。 CY Burrple Crawl.R 使用R中的html pacakage从抓取评论数据 Tripadvisor RSelenium CY V2.R 使用R中的RSelenium包从抓取评论和评分数据 R中...

    vb_webbrowser 自动发贴

    此外,VB WebBrowser控件虽然方便,但性能和功能相比现代的Web自动化工具如Selenium、Puppeteer等可能稍显不足。对于更复杂的网页交互和自动化需求,可能需要考虑使用这些现代工具。 总结起来,VB WebBrowser控件为...

    python实现忍三游戏兑换码全族自动领取

    driver.get("https://game.example.com/claim-codes") # 模拟登录操作,假设页面上有username和password的输入框 username_input = driver.find_element_by_id('username') password_input = driver.find_...

    python爬虫神器Pyppeteer入门及使用.docx

    在现代网络爬虫领域中,Selenium作为一款老牌的Web自动化测试框架,因其支持多种浏览器且提供了丰富的API接口而广受开发者欢迎。然而,Selenium也有一些明显的缺点,如运行速度较慢、对版本配置要求严格等。针对这些...

    ChromeDriver v2.42 (2018-09-13)

    Resolved issue 2552: Some error codes are not standard compliant [[Pri-2]] Resolved issue 669: console.log with multiple arguments not handled properly [[Pri-2]] Resolved issue 2545: Getting "unknown ...

    模拟鼠标键盘控制操作系统

    在本项目中,描述提及了“自动化测试程序”的基础,这意味着我们可能使用类似Selenium或AutoIt这样的工具,它们允许开发者编写代码来模拟用户与界面的交互。这里特别提到了C#源程序,这表明我们的实现可能基于.NET...

    JSp网络采集程序.rar

    3. **动态请求**:对于动态加载或异步获取的内容,可能需要模拟Ajax请求或使用Selenium等工具进行模拟用户交互。 4. **爬虫控制**:包括设置爬取深度、遵循或忽略robots.txt规则、处理重定向、防止IP被封禁等。 5. *...

    抢购haiwei.rar

    综合以上分析,这个"抢购haiwei.rar"的压缩包提供了一个完整的Python自动化抢购解决方案,它使用了Selenium库(通过chromedriver.exe)来控制Chrome浏览器,模拟用户操作,同时利用了Python的强大功能进行数据处理和...

    KupcakeOpenSourceCodes

    【Kupcake Open Source Codes】项目是一个开源代码库,它可能包含了用于开发、设计或管理Kupcake相关软件或服务的源代码。由于没有提供具体的标签,我们可以假设这个项目覆盖了多个IT领域的知识,包括但不限于软件...

    中级案例分析13-17年.zip

    4. **自动化测试**:随着技术的发展,自动化测试工具如Selenium、JMeter、Appium等在软件测试中扮演了越来越重要的角色。这些案例可能涉及到如何选择合适的自动化工具,编写测试脚本,以及自动化测试框架的构建。 5...

Global site tag (gtag.js) - Google Analytics