17.4 C
New York
Thursday, April 3, 2025
Home Blog

automated testing – I’m automating coop web site and I am going through drawback whereas customizing XPath for add to cart button


I’ve custom-made an XPath for including a product which has low cost 30% for two. Now I’m going through drawback whereas including this into the cart.

bundle pattern;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.Listing;
import java.util.Map;
import java.util.concurrent.TimeUnit;

import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.chrome.ChromeOptions;

public class Coop_angebote {

    public static void principal(String[]args) throws InterruptedException{

        System.setProperty("webdriver.chrome.driver","C:Chromechromedriver.exe");
    ChromeOptions choices = new ChromeOptions();
     Map prefs = new HashMap();
      prefs.put("credentials_enable_service", false);
      prefs.put("password_manager_enabled", false); 
      choices.setExperimentalOption("prefs", prefs);
    choices.addArguments("start-maximized");
    choices.addArguments("disable-infobars");
    WebDriver driver = new ChromeDriver(choices);
    driver.handle().timeouts().implicitlyWait(50, TimeUnit.SECONDS);

    // For Login Performance

    driver.get("https://www.coopathome.ch/de?lang=de");
    driver.findElement(By.xpath("html/physique/div[2]/div/div[2]/nav[2]/div/ul/li[2]/a[1]/span")).click on();
    Thread.sleep(2000);
    driver.findElement(By.xpath("html/physique/div[1]/div[2]/div/div/div/div/div/div/type/div[3]/div/div/enter")).sendKeys("USERNAME");
    driver.findElement(By.xpath("html/physique/div[1]/div[2]/div/div/div/div/div/div/type/div[4]/div[2]/div/enter")).sendKeys("PASSWORD");
    driver.findElement(By.xpath("html/physique/div[1]/div[2]/div/div/div/div/div/div/type/div[6]/button")).click on();
    Thread.sleep(2000);
    driver.findElement(By.xpath("html/physique/div[3]/div/div[2]/div[2]/header/a")).click on();
    JavascriptExecutor jse = (JavascriptExecutor)driver;
    jse.executeScript("window.scrollBy(0,800)", "");

    Thread.sleep(1000);

    JavascriptExecutor jse1=(JavascriptExecutor)driver;
    jse1.executeScript("window.scrollBy(0,400)", "");

    Thread.sleep(1000);

    JavascriptExecutor jse2=(JavascriptExecutor)driver;
    jse2.executeScript("window.scrollBy(0,800)", "");

    Thread.sleep(1000);

    JavascriptExecutor jse3=(JavascriptExecutor)driver;
    jse3.executeScript("window.scrollBy(0,800)", "");

    Thread.sleep(1000);

    JavascriptExecutor jse4=(JavascriptExecutor)driver;
    jse4.executeScript("window.scrollBy(0,800)", "");

    Thread.sleep(1000);

    JavascriptExecutor jse5=(JavascriptExecutor)driver;
    jse5.executeScript("window.scrollBy(0,250)", "");

    Thread.sleep(1000);

    JavascriptExecutor jse6=(JavascriptExecutor)driver;
    jse6.executeScript("window.scrollBy(0,250)", "");

  //driver.findElement(By.xpath("//*[contains(text(),'30% ab 2')]")).click on();


    Listing var=driver.findElements(By.xpath("//*[contains(text(),'30% ab 2')]"));
    System.out.println(var.measurement());

    for(int i = 0;i<=var.measurement();i++){

         Listing li = new ArrayList();
         var.get(i).getText().trim();
         System.out.println("ACTUAL:'"+ var.get(i).getText().trim() + "'");
           if(var.get(i).getText().trim().equals("30% ab 2"))
           {
               driver.findElement(By.xpath("//*[@class="btn__inner"]")).click on();
               Thread.sleep(1000);
               System.out.println("IN iF:");
           }

I have attached screenshot for HTML code.

Mechanical Orchard faucets gen AI for mainframe-to-cloud modernization



Utilizing Gen AI in mainframe modernization

Trade analysis backs the ides that generative AI can tackle gaps within the mainframe modernization course of.

In accordance with a latest report on mainframe tendencies by Data Companies Group (ISG), the usage of gen AI can speed up migrations and mitigate the dangers related to mainframe modernizations:

“In most mainframe migrations to the cloud, greater than 70 % of the time is spent on testing. GenAI considerably accelerates this course of by producing testing scripts from the legacy supply code and routinely operating them on the newly created purposes, guaranteeing velocity and accuracy,” ISG’s report states. “Along with accelerating testing, GenAI can pinpoint bugs within the code, facilitating fast fixing and enhancing high quality. GenAI can also be used as a human interface, enabling purchasers to inquire in regards to the performance of each previous and new code, perceive enterprise guidelines and assess the influence of modifications. Different reported advantages embrace eliminating lifeless code, changing code libraries and offering clear code for future upkeep.”

Thoughtworks partnership

Along with the Imogen launch, Mechanical Orchard is asserting its first accomplice: Thoughtworks, a know-how consultancy that focuses on knowledge and legacy software modernization and cloud companies software program design.

The partnership will make use of Thoughtworks’ CodeConcise Legacy Assistant, an AI-based instrument geared toward shortly understanding and analyzing legacy codebases. The concept is to combine CodeConcise outcomes into the Imogen system to hurry code growth, the corporate said.

Mechanical Orchard was based in 2022 by Mee, who’s former CEO of Pivital Labs, which VMware purchased for $2.7 billion in 2019. Mechanical Orchard has raised $74 million in funding, and it has about 100 staff. It joins an inventory of rivals that provide mainframe modernization companies, together with Kyndryl, Google Cloud, AWS, Microsoft, and Rocket Software program.

react native – expo prebuild would not generate ios listing


I’ve made an Expo app. I’m making an attempt to eject from Expo. To do that, I’ve run the command npx expo prebuild. This appropriately generates the android listing. Nevertheless, the ios listing will not be generated.

Via analysis, I’ve discovered that I might want to use a Mac OS machine to generate the ios listing. Nevertheless, I haven’t got entry to a Mac OS machine. Is there a distinct strategy to generate the ios listing?

May I generate the ios listing utilizing GitHub Actions? How?

I’ve tried to make use of the next .yml file:

    runs-on: macos-latest
    steps:
      - makes use of: actions/checkout@v2
      - identify: Arrange Node.js
        makes use of: actions/setup-node@v2
        with:
          node-version: "20"
      - identify: Set up Dependencies
        run: npm set up
      - identify: Set up Expo CLI
        run: npm set up -g expo-cli
      - identify: Run expo prebuild to generate iOS and Android directories
        run: npx expo prebuild

      - identify: Verify if ios listing exists
        run: |
          if [ ! -d "ios" ]; then
            echo "iOS listing doesn't exist!"
            exit 1
          fi

      - identify: Verify if android listing exists
        run: |
          if [ ! -d "android" ]; then
            echo "Android listing doesn't exist!"
            exit 1
          fi

This works. I’ve added the next strains to the top of the file:

      - identify: Add iOS listing as artifact
        makes use of: actions/upload-artifact@v2
        with:
          identify: ios-directory
          path: ios/

      - identify: Add Android listing as artifact
        makes use of: actions/upload-artifact@v2
        with:
          identify: android-directory
          path: android/

This causes the next error within the Arrange job part:

Present runner model: '2.323.0'
Working System
  macOS
  14.7.4
  23H420
Runner Picture
  Picture: macos-14-arm64
  Model: 20250331.1204
  Included Software program: https://github.com/actions/runner-images/blob/macos-14-arm64/20250331.1204/photos/macos/macos-14-arm64-Readme.md
  Picture Launch: https://github.com/actions/runner-images/releases/tag/macos-14-arm64percent2F20250331.1204
Runner Picture Provisioner
GITHUB_TOKEN Permissions
  Contents: learn
  Metadata: learn
  Packages: learn
Secret supply: Actions
Put together workflow listing
Put together all required actions
Getting motion obtain information
Obtain immutable motion package deal 'actions/checkout@v2'
  Model: 2.7.0
  Digest: sha256:95d28907bc868c0bab52f05f1f84cf8416c9415fba4c92519bc0b83bdce1eae3
  Supply commit SHA: ee0669bd1cc54295c223e0bb666b733df41de1c5
Obtain immutable motion package deal 'actions/setup-node@v2'
  Model: 2.5.2
  Digest: sha256:a8e87bde4bf0e0cb7e65a7900c98100538686fbd712bdd87ab6643ebf7a0a248
  Supply commit SHA: 7c12f8017d5436eb855f1ed4399f037a36fbd9e8
Error: Lacking obtain information for actions/upload-artifact@v2

Shay Levi, CEO and Co-Founding father of Unframe – Interview Collection

0


Shay Levi is the Co-Founder and CEO of Unframe, an organization redefining enterprise AI with scalable, safe options. Beforehand, he co-founded Noname Safety and led the corporate to its $500M acquisition by Akamai in simply 4 years. A confirmed innovator in cybersecurity and expertise, he focuses on constructing transformative options.

Unframe is an all-in-one enterprise AI platform headquartered in Cupertino, California, that permits companies to deliver any distinctive AI use case to life in hours, reasonably than months. By its Blueprint Method, Unframe collaborates with massive enterprises globally to implement options throughout observability, knowledge abstraction, clever brokers, and modernization. Unframe makes use of outcome-based pricing, permitting prospects to expertise and evolve any answer they need, risk-free. Unframe is LLM agnostic and does not require fine-tuning or coaching – foundationally altering what is feasible for giant enterprises looking for scalable, turnkey AI options.

On April third, 2025, Unframe Emerged from Stealth with $50M to Remodel Enterprise AI Deployment.

Following the profitable exit of Noname Safety to Akamai, what motivated you to launch Unframe, and what hole did you determine within the enterprise AI area that made it the fitting time and alternative?

I really left Noname earlier than the acquisition discussions began. What I noticed was an enormous wave coming, CIOs had been beneath stress to undertake AI quick, however the tooling accessible to them simply wasn’t enterprise-ready. They had been both piecing collectively level options with no governance, or ready on inside groups to construct from scratch. Neither path scaled, and each launched danger.

That was the sign. I spotted enterprises didn’t simply want entry to AI – they wanted a platform that gave them management, pace, and suppleness on the similar time. That’s what led to Unframe.

Noname Safety was a pioneer in API cybersecurity. How has your expertise constructing a security-focused firm formed the method you’re taking with Unframe?

Safety is in our DNA. At Noname, we discovered that innovation with out governance shortly results in danger. That lesson carries over on to AI. From day one at Unframe, we’ve baked in the fitting guardrails – safe knowledge dealing with, mannequin transparency, role-based entry – so enterprises can innovate with out introducing new vulnerabilities.

We’re additionally very conscious of how issues break at scale. So whereas Unframe empowers groups to maneuver quick, we’ve designed the platform with enterprise complexity in thoughts – whether or not it’s managing knowledge flows, implementing compliance, or integrating with legacy methods.

Have been there any widespread ache factors throughout enterprises within the API safety area that helped inform your imaginative and prescient for AI adoption?

Positively. At Noname, we noticed how difficult it was for enterprises to achieve visibility and management throughout their environments. Shadow APIs, inconsistent tooling, and siloed groups created actual operational danger – and it slowed every little thing down.

With AI, we’re seeing the identical sample repeat. Each staff desires to maneuver shortly, however with out the fitting construction, you get fragmentation, duplication, and blind spots. That have formed our pondering with Unframe. We wished to provide enterprises a solution to undertake AI in a method that’s unified, safe, and truly works throughout groups and methods – not simply in remoted pockets.

Unframe is gaining traction with main enterprises and achieved ARR within the thousands and thousands inside a 12 months – how did you obtain this degree of adoption so shortly?

We didn’t take the normal route of sluggish experimentation or restricted pilots. From day one, we had been out out there, partnering with international enterprises on high-impact, real-world tasks. These weren’t remoted use instances – they had been strategic initiatives tied to core components of the enterprise. That’s what earned us belief and helped Unframe turn out to be a strategic accomplice throughout a number of domains, not only a vendor. Once you ship actual outcomes quick, adoption follows.

You’ve spoken about decreasing AI deployment from months to hours. Are you able to stroll us via how Unframe makes this doable?

We’ve constructed lots of of deep technical constructing blocks into the Unframe platform. When a brand new answer is deployed, it’s not ranging from zero – it’s tailor-made via a blueprint that maps these elements to the person’s particular wants. That’s how we cut back deployment from months to hours.

Inform us extra in regards to the Blueprint Method – what makes it distinctive, and why is it so highly effective for enterprise AI use instances?

The Blueprint Method is how we ship tailor-made AI options at scale – with out ranging from scratch. Every blueprint maps the logic, elements, workflows, and guardrails for a particular use case, configuring our platform’s library of technical constructing blocks. It’s how we mix pace and precision at scale.

Unframe positions itself as LLM-agnostic and doesn’t require mannequin fine-tuning. Why was it vital so that you can keep away from the necessity for coaching customized fashions?

As a result of most enterprises don’t want customized fashions – they want customized outcomes. The second you begin fine-tuning, you’re locking your self into a particular vendor, rising prices, and creating upkeep overhead that the majority organizations aren’t set as much as deal with.

We designed Unframe to work with current trendy fashions in a method that also delivers tailor-made, high-quality outcomes – with out the complexity. By staying LLM-agnostic, we give enterprises flexibility, quicker time to worth, and the flexibility to evolve because the mannequin panorama adjustments. The purpose isn’t to coach fashions – it’s to unravel issues. And you are able to do that extremely effectively with out touching fine-tuning.

What function does pure language interplay play in Unframe’s platform – and the way far can it go in changing conventional software program UIs?

Pure language is a robust entry level – it makes AI immediately accessible to enterprise customers, with out coaching or technical ramp-up. That’s particularly vital if you’re working with international firms and distributed workforces throughout totally different international locations, roles, and languages. A chat-style interface helps degree the enjoying discipline.

However each Unframe use case is totally different, and the interface must match the duty. Typically meaning a pure language chat. Different occasions, it’s a dynamic desk, an interactive dashboard, or a content material era interface – no matter most closely fits the workflow and the result we’re fixing for.

We don’t see pure language as a alternative for conventional UIs, however as a layer that removes friction the place it issues. The purpose is to make software program really feel intuitive, versatile, and tailor-made – not simply to the person, however to the issue they’re making an attempt to unravel.

What classes from scaling Noname Safety to a $1B+ valuation and $450M acquisition are you making use of at Unframe?

Concentrate on fixing actual, pressing issues – and do it with enterprise-grade execution from day one. At Noname, we discovered that scale comes from belief, and belief comes from delivering quick with out chopping corners. At Unframe, we’re making use of that very same mindset: transfer shortly, construct securely, and keep relentlessly customer-focused.

As a repeat founder, what’s your method to constructing management groups and firm tradition in hyper-growth environments?

In hyper-growth, you don’t have the luxurious of figuring issues out slowly – so that you want individuals round you who should not solely nice at what they do, however who thrive in ambiguity and transfer with urgency. For me, constructing a management staff begins with belief, readability, and shared values. Everybody must be aligned on the place we’re going, and equally dedicated to proudly owning their a part of the journey.

Tradition is identical. It’s not ping-pong tables – it’s the way you make selections when issues get laborious. At Unframe, we’ve been intentional about making a tradition of possession, tempo, and honesty. We transfer quick, we hear laborious, and we push one another to be higher each day. That form of tradition doesn’t simply survive hyper-growth – it drives it.

Thanks for the nice interview, readers who want to study extra ought to go to Unframe

Making sense of the system: Highlights from the Corry Assessment



Making sense of the system: Highlights from the Corry Assessment

The Corry Assessment recommends plenty of modifications in the way in which environmental regulation operates within the brief time period, and declares itself a climbing of aspirations for each financial progress and the pure world. It’s a juggling act that successive governments have tried to tug off. Titled Delivering Financial Development and Nature Restoration: An Unbiased Assessment of Defra’s Regulatory Panorama, the 64-page doc, produced by economist Dan Corry, units out 29 suggestions meant to have “a system degree influence”, altering the regulatory panorama and its related tradition.

To date, Kier Starmer has tried to strike a bullish tone on “Nimbys and zealots”, which has generated some considerate push again. The Corry Report actually appears to advance a extra cautious ethos, with assurances of “holding again at this stage from main institutional change when it comes to the boundaries of the regulators,” however with seemingly decisive efforts to clear away obstacles to growth.

We do must prioritise the atmosphere, the doc is at pains to state, “[b]ut in mitigating our impacts, we shouldn’t be rigidly defending the whole lot precisely as it’s, at any price,” says an early passage. “Our method should additionally make ample house for innovation, growth and progress.”

Licensing and allowing is one side of this, with Defra thought of to be “too gradual and missing in transparency”. With regulation, it appears to be a case of an excessive amount of in locations – with some stakeholders, notably farmers, struggling to navigate laws of Byzantine complexity – but additionally too little elsewhere, with the size and urgency of the waste crime drawback, for instance, necessitating a readier willingness to wield the stick.

The “skinny inexperienced line”
Corry recommends that larger autonomy be afforded to trusted conservation teams and environmental companions, with the even handed use of memoranda of understanding (MOUs) and ‘class licences’, which must be deployed extra extensively, “enabling [stakeholders] to maneuver quick on restoring nature with out making use of to regulators for a number of permissions.” And this may require creating exact and constant standards for the conferring of such freedoms, which ought to embrace consideration of the group’s monitor document in issues like “organisational compliance and optimistic real-world influence”.

Equally, the overview recommends expediting current progress with updating the allowing laws “to permit regulators extra flexibility to take wise, risk-based selections”. This has a bearing particularly on “supporting net-zero and round economic system priorities, similar to facilitating the event of low carbon industrial infrastructure, and for guaranteeing remediated soil will not be unnecessarily categorised as waste.”

Penny Simpson, Environmental Legislation Associate at legislation agency Freeths, tried to put the report in context: “The elemental drawback with trendy economies is that good intentions to attempt to tackle issues as they emerge can, over the long term, result in a gradual accretion of guidelines and laws which stifle innovation.”

“Successive Governments as they take workplace have tried, and largely failed, to handle this problem and this Authorities isn’t any exception. The Corey Assessment is simply the newest in an extended record of makes an attempt at implementing ‘smarter’ and ‘leaner’ regulatory frameworks.”

Key to the possible success of this try, she stated, could be whether or not it “recognises the significance of a excessive integrity and appropriately ruled non-public nature market which may efficiently entice funding and thereby develop.”

Certainly the report recommends that Defra discover launching a Nature Market Accelerator to carry a lot wanted coherence to nature markets and speed up funding’”.

“It’s not clear what this implies however it sounds encouraging,” she stated, seemingly in accord with the doc’s insistence on the wrong-headedness of framing this space of coverage as requiring an “both/or” choice between progress or the atmosphere.

Fluid methods
Some laws even create boundaries that hamper efforts to enhance the atmosphere, and authorized difficulties appeared irresolvable with Wessex Water’s try to offer an NBS storm overflow final 12 months, though the utility was recommended for its choice to proceed with the plans anyway. Such anomalies look like addressed by a advice within the overview that nature-based options may be allowed to dispense with their present requirement for full planning permission. In different phrases, to now not require the identical degree of permission as different varieties of infrastructure, and thereby circumvent a few of these boundaries of time and price. “Defra ought to conduct a six-month dash, with business, on eradicating the boundaries to utilizing NBS to flooding and air pollution.” The boundaries embrace issues like planning, benefit-to-cost ratios, and biodiversity web acquire. It ought to “suggest a manner of lowering or eradicating these,” says the overview.

Some change to laws appear destined to proceed from the overview’s suggestions however these could be “to permit a wider perspective to be taken that’s good for nature total”.

The dearth of uniformity in steerage between completely different regulators is one drawback with issues as they stand, and the overview recommends publishing new Strategic Coverage Statements for all regulators, guaranteeing consistency throughout all of them.

“A bonfire of laws will not be the way in which ahead,” says the doc at one other level, in a bit about untangling ‘inexperienced tape’.  Somewhat, Corry outlines a programme of streamlining and modernising to make sure laws are “related to [Environmental Improvement Plan (EIP)] targets, match for the longer term and supply discretion to ship good outcomes for nature and progress in a spot”. Early priorities pegged within the doc embrace The Water Surroundings (Water Framework Directive) (England and Wales) Laws 2017; and The Environmental Allowing Laws 2016.

One space of confusion that incurs an environmental price at current is slurry utility and storage, and the doc recommends reform right here “to assist tackle diffuse water air pollution, making a round economic system for vitamins and boosting farming productiveness.”

Outdated IT has been a flashpoint of criticism of regulators in latest occasions, which the overview doesn’t overlook with its advice that they endure a shift to grow to be “extra digital, extra real-time and extra revolutionary with companions”. It recommends appointing two ‘digital champions’ to supervise this progress, which ought to embody efforts to “enhance the transparency of the work of regulators by making reside monitoring info accessible to the general public, to allow them to see for themselves how regulators are enhancing the atmosphere of their space.”

The overview makes clear that it’s involved with enhancing how the regulatory system operates within the brief time period, whereas indicating a route of journey for securing different modifications in the long run.