文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

如何使用Selenium自动化测试SAP CRM WebClient UI

2023-06-04 01:27

关注

这篇文章主要介绍了如何使用Selenium自动化测试SAP CRM WebClient UI,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

package com.xc.crm.test; import static org.junit.Assert.*; import org.junit.After;import org.junit.Before;import org.junit.Test; import org.openqa.selenium.By;import org.openqa.selenium.NoSuchElementException;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.firefox.FirefoxDriver;import org.openqa.selenium.ie.InternetExplorerDriver;import org.openqa.selenium.remote.DesiredCapabilities;import org.openqa.selenium.support.ui.ExpectedCondition;import org.openqa.selenium.support.ui.WebDriverWait; public class CRMTest{       private WebDriver myDriver;       private String crmURL;             private String mainWindowHandle;       private String popupWindowHandle;        @Before       public void setUp() throws Exception       {//     System.setProperty("webdriver.ie.driver","C:\\xiechuan\\30_Software\\02_Selenium\\IEDriverServer_x64_2.26.2\\IEDriverServer.exe");//            DesiredCapabilities ieCapabilities = DesiredCapabilities.internetExplorer();//     ieCapabilities.setCapability(InternetExplorerDriver.INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS,true);//            myDriver = new InternetExplorerDriver(ieCapabilities);               myDriver = new FirefoxDriver();                           crmURL = "https://ldcijerry.corp:44354/sap/bc/bsp/sap/crm_ui_start/default.htm";                    }        @After       public void tearDown() throws Exception       {       }        @Test       public void test() throws InterruptedException       {              System.out.println("--- Test Start ---");                           // This is for initial the tab in browser                           // myDriver.navigate().to("http://www.soso.com/");                           // Thread.sleep(5000);                           myDriver.navigate().to(crmURL);              System.out.println("In Testing: Open CRM Logon page");                           Thread.sleep(15000);                                         myDriver.findElement(By.id("sap-user")).clear();              myDriver.findElement(By.id("sap-password")).clear();                           myDriver.findElement(By.id("sap-user")).sendKeys("XIE");              myDriver.findElement(By.id("sap-password")).sendKeys("Xc12");                           myDriver.findElement(By.cssSelector("span.urBtnCntTxt")).click();              System.out.println("In Testing: Logon on CRM");                           Thread.sleep(15000);               myDriver.findElement(By.id("SERVICEPRO")).click();              System.out.println("In Testing: Click Service Professional");                           Thread.sleep(30000);                           myDriver.switchTo().frame("CRMApplicationFrame");              Thread.sleep(10000);              myDriver.switchTo().frame("WorkAreaFrame1");              Thread.sleep(10000);              System.out.println("In Testing: Switched to CRMApplicationFrame-WorkAreaFrame1");                          // Create service order              // AG3              // myDriver.findElement(By.id("C5_W18_V19_SRV-ORD-DC")).click();              // QD3              myDriver.findElement(By.id("C5_W19_V20_SRV-ORD-DC")).click();              System.out.println("In Testing: Click to create Service Order");              Thread.sleep(20000);                                  // AG3             // myDriver.findElement(By.id("C31_W109_V112_V113_btrefobjmain_struct.ib_ibase-btn")).click();              // QD3              myDriver.findElement(By.id("C32_W114_V117_V118_btrefobjmain_struct.ib_ibase-btn")).click();              System.out.println("In Testing: Click value help to search IBase");                                        mainWindowHandle = myDriver.getWindowHandle();              System.out.println("In Testing: " + "Main Window: " + mainWindowHandle + " / " + myDriver.getTitle());                           Thread.sleep(10000);                           for (String myHandle : myDriver.getWindowHandles())              {                     System.out.println("In Testing: " + "Current Handle: " + myHandle);                     if(!myHandle.equals(mainWindowHandle))                     {                           popupWindowHandle = myHandle;                           myDriver.switchTo().window(popupWindowHandle);                           System.out.println("In Testing: " + "Popup Window: " + myDriver.getWindowHandle() + " / " + myDriver.getTitle());                           break;                     }              }                           myDriver.switchTo().frame("WorkAreaFrame1");              System.out.println("In Testing: Switched to pop-up WorkAreaFrame1");                           Thread.sleep(20000);                           // Enter IBase ID              // AG3             // myDriver.findElement(By.id("C36_W133_V135_V136_V141_search_parameters[1].VALUE1")).clear();              // myDriver.findElement(By.id("C36_W133_V135_V136_V141_search_parameters[1].VALUE1")).sendKeys("4448");              // QD3              myDriver.findElement(By.id("C37_W137_V139_V140_V145_search_parameters[1].VALUE1")).clear();              myDriver.findElement(By.id("C37_W137_V139_V140_V145_search_parameters[1].VALUE1")).sendKeys("12");              System.out.println("In Testing: Pop-up search parameter entered");                           // Click search button              // AG3              // myDriver.findElement(By.id("C36_W133_V135_Searchbtn")).click();              // QD3              myDriver.findElement(By.id("C37_W137_V139_Searchbtn")).click();              System.out.println("In Testing: Click search button in Pop-up window");                           Thread.sleep(10000);                           // Select the row in search result              // AG3              // myDriver.findElement(By.id("C36_W133_V135_V137_Table_sel_1-rowsel")).click();              // QD3              myDriver.findElement(By.id("C37_W137_V139_V141_Table_sel_1-rowsel")).click();              System.out.println("In Testing: Select search result in Pop-up window");                           Thread.sleep(10000);                           System.out.println("--- Test End ---");       }}

感谢你能够认真阅读完这篇文章,希望小编分享的“如何使用Selenium自动化测试SAP CRM WebClient UI”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网行业资讯频道,更多相关知识等着你来学习!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯