البرمجة

كيفية التعامل مع تنبيه يحتوي على جافا سكريبت في زر في موقع SharePoint باستخدام WebDriver و Java

To handle the alert with embedded JavaScript in a button in Selenium WebDriver using Java, you can use the following approach:

java
// Click the delete button driver.findElement(By.id("ctl00_ContentPlaceHolder1_btnDelete")).click(); // Wait for the alert to appear WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.alertIsPresent()); // Switch to the alert Alert alert = driver.switchTo().alert(); // Get the alert text String alertText = alert.getText(); System.out.println("Alert text: " + alertText); // Accept the alert alert.accept();

In this code snippet, we first locate the delete button and click on it. Then, we wait for the alert to appear using WebDriverWait. Once the alert is present, we switch to the alert using driver.switchTo().alert(). We can then get the text of the alert using alert.getText() and accept it using alert.accept().

This should help you handle the alert with embedded JavaScript in your SharePoint website.

المزيد من المعلومات

للتعامل مع الجافا سكربت المضمنة في زر الحذف في موقع SharePoint باستخدام Selenium WebDriver و Java، يمكنك استخدام الكود التالي:

java
// تحديد زر الحذف والنقر عليه driver.findElement(By.id("ctl00_ContentPlaceHolder1_btnDelete")).click(); // انتظار ظهور التنبيه WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.alertIsPresent()); // التبديل إلى التنبيه Alert alert = driver.switchTo().alert(); // الحصول على نص التنبيه String alertText = alert.getText(); System.out.println("نص التنبيه: " + alertText); // قبول التنبيه alert.accept();

في هذا المثال، نقوم أولاً بتحديد زر الحذف وننقر عليه. ثم، ننتظر ظهور التنبيه باستخدام WebDriverWait. بمجرد ظهور التنبيه، نقوم بالتبديل إليه باستخدام driver.switchTo().alert(). بعد ذلك، يمكننا الحصول على نص التنبيه باستخدام alert.getText() وقبوله باستخدام alert.accept().

هذا يجب أن يساعدك في التعامل مع التنبيه الذي يحتوي على جافا سكربت مضمنة في موقع SharePoint الخاص بك.

مقالات ذات صلة

زر الذهاب إلى الأعلى
إغلاق

أنت تستخدم إضافة Adblock

يرجى تعطيل مانع الإعلانات حيث أن موقعنا غير مزعج ولا بأس من عرض الأعلانات لك فهي تعتبر كمصدر دخل لنا و دعم مقدم منك لنا لنستمر في تقديم المحتوى المناسب و المفيد لك فلا تبخل بدعمنا عزيزي الزائر