Veröffentlicht am

6 steps to create and export Selenium IDE tests

da Agency – Webdesign & SEO, Köln meldet:

The aim of this blog is to show you in 6 steps how to install the Selenium IDE Add-on, create basic Selenium IDE automation tests by recording, execute them and export them into a programming language (e.g. C#, Java, Python).

What is Selenium IDE?

Selenium IDE is a Firefox/Chrome Add-on that helps create Selenium test cases and test suites against web applications. It is a useful tool to create the bulk of your Selenium scripts, but it does also have its limitations.

For this blog, we will concentrate on just Firefox, although Chrome is pretty much the same.

1.    Install the Selenium IDE Add-on

The first step is to download the Selenium IDE which – at the time of writing – is via the following URL:

https://selenium.dev/downloads/

Just click on the browser you are interested in (for these notes we are going to use Firefox, although Chrome is really not that different).

Selecting the Firefox IDE from the webpage

This should take you to the actual Add-on page.

Selecting the Firefox IDE from the webpage

Clicking the Add to Firefox button will start installation.

6 steps to create and export Selenium IDE tests

After accepting all the defaults, it will appear on your browser toolbar.

6 steps to create and export Selenium IDE tests

2.    Record a script to create tests using the Selenium IDE

To record a test case:

Ensure you have browsed to the Application under Test (AUT) that you wish to record against.

For these notes we have our own website.

From the Firefox Tool bar, select the Selenium IDE icon.

6 steps to create and export Selenium IDE tests

The Selenium IDE Application will start by displaying a menu:

6 steps to create and export Selenium IDE tests

As we have never used it before, the above screen is selecting the first option.

When creating a new project, it will ask for the name. For these notes we have used the imaginative name of demo.

6 steps to create and export Selenium IDE tests

It will then want to run a test, and will prompt you for the project’s base URL. You can get this by copying the main URL from the original browser window and pasting it across.

6 steps to create and export Selenium IDE tests

Selenium will then open a new browser window which you use to record your steps for your test.

6 steps to create and export Selenium IDE tests

From this point forward the IDE monitors all mouse interactions and keyboard inputs and records them in the Selenium IDE interface. Until you stop the recorder.

Selenium IDE does have a habit of placing the web page in a window in front of the Selenium IDE and will record the action of moving it in your script.

6 steps to create and export Selenium IDE tests

The Selenium IDE table tab will then display all actions captured by the recorder. It is possible to view, modify or delete commands from this view. To delete a command, right click on the command and select delete from the menu.

When all recorded steps are complete, stop the recorder by clicking on the red circle.

6 steps to create and export Selenium IDE tests

To save your test, you will need to save the entire project, click on the Save project button in the top right-hand corner of the IDE screen.

6 steps to create and export Selenium IDE tests

3.    Replay the script in the Selenium IDE

Once all the required test steps have been captured, you can now replay the test by clicking on the Run current test icon.

6 steps to create and export Selenium IDE tests

If you have closed the window Selenium used to record the test, the IDE will now open it again.

On successful execution of the test the captured tests steps will turn green:

6 steps to create and export Selenium IDE tests

Should the test fail, the failed line (usually highlighted in red) and the failure count on the left-hand side will increment by one.

6 steps to create and export Selenium IDE tests

Any errors also appear in the log tab at the bottom of the Selenium IDE interface.

Inserting Commands

When using Selenium IDE as an automated test tool it is inevitable that you are going to need to modify the recorded steps to include an additional step e.g. an extra click, some synchronisation or an Assertion (A method of passing or failing a test).

To insert a new command:

Select the point in the script where you wish to place the new command.

Right click the Selenium IDE interface and select Insert New Command

6 steps to create and export Selenium IDE tests

Initially the new command will appear in the script as a blank line.

Structure of a line in the test case

Each command requires up to three inputs:

  • Command
  • Target
  • Value
6 steps to create and export Selenium IDE tests

Command

Command is the action the Selenium Script is to perform. Commands range in functionality from Navigation e.g. Click a Button, Synchronisation e.g. Wait for text to appear on the screen and Assertions e.g. ensure the correct text has appeared on the screen.

To select a command, click on the black arrow to expand the drop-down list of available commands.

Target

Target refers to the Object or “WebElement” that you wish to record the action.

For example, if the Selenium IDE script was required to click on a link a “description” of the object would be included in the target field.

Value

The value is an optional field used when the command needs some additional information. For example, if you want to type in a text box, then this field would contain the text you wished to type.

4.    Replay all tests in the Selenium IDE

If the Selenium IDE project has more than one test, we can run them all sequentially.

In the screenshot below, we have a couple of tests sitting in the IDE…

6 steps to create and export Selenium IDE tests
A Selenium test suite wA Selenium IDE test suite with more than one test case.

To execute all tests in the test suite, select the Run all tests button:

6 steps to create and export Selenium IDE tests

The test cases show up as green when the tests have executed successfully:

6 steps to create and export Selenium IDE tests
6 steps to create and export Selenium IDE tests

5.    Export the tests from Selenium IDE

The Selenium IDE enables recorded test cases to be exported to a range of programming languages and their respective testing frameworks.

To do this:

Either right-click on the test name or hover the mouse near the end of the test name field until three dots appear.

6 steps to create and export Selenium IDE tests

Click on this and select export.

6 steps to create and export Selenium IDE tests

Selenium will then prompt you to select the language (in this example we have selected C# NUnit).

6 steps to create and export Selenium IDE tests

Give a filename and save it in the desired location.

6 steps to create and export Selenium IDE tests

The choice of programming language and test framework would be either be a personal preference or an organisational norm and would depend on tools and skills of the tester or developers available.

6.    Running Selenium IDE test cases from the command line

Once you add the test cases into a Selenium IDE test suite, it is possible to execute them from the command line.

Open a new instance of File Manager (“Win + E”).

Navigate to the folder where you saved your project (the file with the extension “side”).

6 steps to create and export Selenium IDE tests

Hold down Control & Shift and then Right click the mouse and select Open PowerShell window Here:

6 steps to create and export Selenium IDE tests

Run the tests from the command line

In the terminal window, type in the following:

selenium-side-runner *.side

This will run selenium from the command line.

6 steps to create and export Selenium IDE tests

To exit out of the terminal window, type in exit.

Want to find out more?

Want find out more about setting up the Selenium IDE, exporting test cases to other languages and running them as actual code?

Well, at the Expleo Academy we deliver a few courses on Selenium and many other subjects. Feel free to visit the Academy website.

More information on the Selenium IDE can be found at the following location:

https://selenium.dev/selenium-ide/docs/en/introduction/getting-started

John Kurowski has been delivering training for over 10 years specialising in Automation, Agile and ISTQB. John also develops the courseware and creates virtual machines in AWS for automation courses.
John has been working in IT for over 30 years and has also been a tester, test manager, developer, development manager, project manager, support consultant (the list goes on…)

Read more about the Indicators on the original post at: https://expleoacademy.com/int/6-steps-to-create-and-export-selenium-ide-tests/

All training courses at Expleo Academy

bcs intermediate certificate in software testing
change management fundamentals
isqi certified agile business analysis caba revision session and exam 1500
flow ambassador excelling at business agility masterclass
estimating for testers
dasa certified devops fundamentals
sql fundamentals
istqb certified tester advanced level security tester
istqb certified tester advanced level technical test analyst
istqb certified tester advanced level test manager
project management professional pmp preparation course
agile certified practitioner pmi acp preparation course
using selenium in csharp with workshop
apmg certified change management in an agile environment foundation and practitioner
risk management professional pmi rmp certification preparation course
project management fundamentals
program management professional pgmp preparation course
istqb certified tester foundation level extension agile tester
bcs certificate in modelling business processes
isaqb certified professional for software architecture foundation level cpsa f
bcs foundation certificate in business analysis
icagile certified product ownership
writing user stories workshop
bcs certificate in requirements engineering
bcs international diploma in business analysis exam preparation workshop
bcs certificate in business analysis practice
agile requirements engineering
certified disciplined agile scrum master dasm
icagile certified agile fundamentals
istqb certified tester advanced level test analyst
certified disciplined agile senior scrum master dassm
requirements verification
isqi certified agile business analysis caba
certified associate in project management capm preparation course
linux essentials
java fundamentals
performance testing fundamentals
agile process tools a look into scrum kanban and safe
scrum master bootcamp
product ownership bootcamp
a4q certified selenium tester foundation
psychology of communication intelligence
test automation fundamentals
using cucumber with selenium
using selenium with workshop
asqf certified professional for project management
istqb certified tester foundation level
agile bootcamp

About Expleo Academy

The Expleo Academy enables you to acquire and develop the right skills by delivering a suite of accredited training courses. With a global presence and reach, we deliver hundreds of training events to thousands of participants each year. We bring the knowledge and real experience of working with global companies and the flexibility of delivering public workshops, custom in-house solutions and blended learning approaches incorporating digital learning capabilities.

The Expleo Academy offers training courses  in Management Consultancy, Business Agility, Continuous Quality, Software Engineering or even Private Events with detailed Learning pathways in Business Analysis, Change Management, Project / Program Management, Software Quality Analysis, Software Quality Management and Software Engineering. Many training courses like test automation engineer, certified tester, automotive spice, usability testing, scrum product owner or isaqb training include certification based on istqb, leading safe, asqf, intacs or isaqb. The Expleo Academy also offers training for wellknown Tools like Microsoft ProjectTools & Automation trainings like Selenium, Jira Essentials, Jira XrayJira Server, Confluence trainingKanbanTricentis and many more.

Academy is part of the Expleo Group , that offers Engineering, Consultancy- and IT-Services to the industry. At https://products.expleogroup.com/ one could find a bunch of products which Expleo developed over the years, among them Testona (Features, Klassifikationsbaum-Methode, Training & Tutorial, References, Download & Price), Modica (MBT Process, Modelling, Object Definition, Generation, Automation, Training & Tutorial), Messina, (Camera-Hil-System, Ancona-Hil-System, Messina RS-UI Test Automation, Modular-Hil-System), Trentino, Persim, Savona, Bergamo, Meran, Powerdiff, and also Powerdiffmerge, and of course the Aerospace Products like Crew Rest Unit, Crew Rest Couch and ALM (3D Printed) parts. On their Tools Website one could find the Test-Suite Expleo-Test/Professional (formerly known as SQS-Test/Professional) at https://tools.expleogroup.com/

Contact the Expleo Academy

Expleo Technology Ireland Ltd
30 North Wall Quay,
Dublin D01 R8H7

Tel +353 87 2355902
Web: https://expleoacademy.com/int/

Google Ads & SEO – da Agency

 

Der Beitrag 6 steps to create and export Selenium IDE tests erschien zuerst auf da Agency – Webdesign & SEO, Köln.

Veröffentlicht am

Die Kubernauts stellen ein…

da Agency – Webdesign & SEO, Köln meldet:

Bei den Kubernauts können großartige Ideen sehr schnell zu großartigen Lösungen für Menschen werden. Bringen Sie Leidenschaft in Ihre Arbeit ein und Sie werden sehen, was Sie erreichen können. Wir arbeiten mit den angesehensten Unternehmen und innovativen Ingenieurteams der Branche zusammen, um innovative Open-Source-Cloud-Technologien zu entwickeln. Bei uns mitzumachen bedeutet, sich in Open-Source-Communities zu engagieren. Wir sind aktiv an der Organisation von Community-Events durch unsere weltweiten Meetups beteiligt und würden gerne mit Ihnen gemeinsam die ganze Reise antreten.

Kubernetes Engineer (f/m/d)

Zuständigkeiten sind:

Anforderungen sind:

Golang Software Engineer (f/m/d)

Verantwortlichkeiten sind:

Schlüsselqualifikationen und Erfahrungen:

SRE Solution Architect (f/m/d)

Zu Ihren Aufgaben und Verantwortlichkeiten gehören die folgenden:

Fähigkeiten, die wir suchen:

Lead DevOps Engineer (f/m/d)

Verantwortlichkeiten sind:

Schlüsselqualifikationen und Erfahrung:

  • Mindestens fünf Jahre Erfahrung in der Entwicklung, dem Design und der Fehlerbehebung von großen verteilten Systemen
  • Praktische Erfahrung mit hochgradig konkurrierenden Systemen in Produktionsqualität
  • Erfahrung mit Programmier- und/oder Skriptsprachen (Golang, Python, Perl, Java, Bash, Ruby)
  • Erfahrung mit DevOps-Kultur!
  • Fehlerbehebung und kreative Problemlösungsfähigkeiten
  • Frühere Erfahrungen in agilen Entwicklungsteams
  • Nachgewiesene Fähigkeit, Ergebnisse pünktlich und in hoher Qualität zu liefern
  • Gute Kenntnisse der deutschen und englischen Sprache

 

Bei allen 4 Jobangeboten bieten die Kubernauts folgendes:

Was wir bieten:

  • Jährliches Gewinnbeteiligungsprogramm
  • Jobticket / Bahncard 100
  • Homeoffice / flexible Arbeitszeiten
  • Kostenlose Getränke und Obst im Büro
  • Team-Lunch einmal im Monat
  • 2 kostenlose Konferenztickets pro Jahr
  • Kostenlose Zertifizierungsschulungen

Wie man sich bewirbt

Interessiert? Bitte kontaktieren Sie uns!

  • per E-Mail an careers@kubernauts.de
  • Erste Fragen beantwortet Ihnen gerne Frau Anja Daniels Telefon +49 221 960 28 202

Wir freuen uns, von Ihnen zu hören!

Über die Kubernauts

Die Kubernauts GmbH hilft Ihren Kunden, die Kosten für IT-Infrastruktur in der Cloud um 80 -90% zu senken. Kubernauts – als gemeinnützige Initiative – unterstützt eine weltweite Gemeinschaft und ein Netzwerk von Cloud-Native Thinkern und Praktikern, die durch ihr Wissen, ihre Ideen und ihre realen Implementierungen von Cloud-Native Apps und Plattformen für jede Branche die Welt ein kleines bisschen besser machen wollen,
die ihren Geist und ihre IT-Strategie durch die Anwendung des Reaktiven Manifests (http://www.reactivemanifesto.org/), DevOps und SRE-Prinzipien in ihrer täglichen Entwicklung und ihrem Betrieb neu gestalten muss.

Die Kubernauts sind der Meinung, dass es an Talenten und Werkzeugen fehlt, die Fachkompetenz mit cloud-nativem Denken und Strategien kombinieren können, um cloud-fähige Anwendungen auf der Grundlage von Mikrodienstarchitekturen zu entwickeln.

Jeder Cloud-Native Thinker kann unserem Netzwerk beitreten, um sein Wissen und seine Fähigkeiten durch unsere kostenlosen Online-Schulungsprogramme zu erweitern oder zu teilen ...

Wir planen, über unsere Mentoren und Ausbilder weltweit kostenlose Online-Schulungen für Kubernetes-, Container-, Serverless– und andere Cloud-bezogene Technologien wie OpenStack und Cloud Foundry anzubieten.

Dabei unterstützen die Kubernauts ganz im Sinne der Open Source Bewegung ausdrücklich auch die kommerzielle Auswertung dieser Grundlagen im Sinne von Dienstleistungen und Services

Die Kubernauts GmbH aus Köln ist Teil der Kubernauts Initiative und bietet mit Diensten & Services wie den Kubernauts Kubernetes Services und etwa Rancher dedicated as a Service erprobte Plattformen, die vielen Unternehmen eine Verbesserung der digitalen Infrastruktur bei gleichzeitiger Kostensenkung bringen.

Die Kubernauts GmbH hat es sich zur Aufgabe gemacht Ihre Kunden nicht nur im Betrieb und Setup on Kubernetes Clustern zu unterstützen, sondern diese auch auf das nächste CloudLess Level zu heben. Neben Umfangreichen DevOps Projekten arbeitet die Kubernauts GmbH an automatisierten Setup Systemen für den Multi- und Hybrid Cloud Betrieb, die OpenSource zur Verfügung stehen oder als „As a Service“ gemanaged genutzt werden könne. Zudem bildet die Kubernauts GmbH in der eigenen Akademie Fachkräfte weiter und lebt dabei nach der OpenSource Mentalität, so dass sie zahlreiche Informationen, Tools und Lehrmaterialien kostenlos und frei zur Verfügung stellt.

Kontakt

Kubernauts GmbH
Im Klapperhof 33b
50670 Cologne

Web: https://kubernauts.de
Phone: +49 221 960 28 202
Email: support@kubernauts.de

Follow

https://facebook.com/kubernauts
https://www.instagram.com/kubernauts/
https://twitter.com/kubernauts/
https://www.youtube.com/c/kubernautsio
https://github.com/kubernauts

Content Marketing & SEO Agenturda Agency

 

Der Beitrag Die Kubernauts stellen ein… erschien zuerst auf da Agency – Webdesign & SEO, Köln.

Veröffentlicht am

The Principles of Risk and Testing

da Agency – Webdesign & SEO, Köln meldet:

In my previous article, I addressed and explained my belief that testing is risk management in a very pure sense.  I set out how the basic stages of risk management map to testing activities. I also said I would continue to delve into risk management to see if it has lessons to teach testing. This is likely. From my experience of risk management, it is a little more mature in some of its practices and approaches.

In this article I am going to review the first principle of risk management. We will see how it aligns to principles, objectives, or practices in testing and if there are lessons to learn. This is a continuation of my investigation into the link between testing and risk management – am I right in saying that they are one and the same? It is a first chance to identify areas where lessons could be learned. Methods or techniques to address those lessons will be the topic of future articles.

In considering the risk management principles I must keep in mind their characteristics. They are:

  • Universal – apply to every organisation.
  • Self-Validating – have been proven in practice.
  • Empowering – give the practitioner confidence.

Any testing activity or principle which I suggest parallels a risk management principle must meet these criteria. It must be applicable in any project, commonly accepted and give clear guidance to the tester which can be explained to a stakeholder.

Principle 1: Aligns with objectives.

Principle 1: Aligns with objectivesRisk management aligns continually with organisational objectives.

The key indicators of this principle are:

Indicator A

Indicator A:         The organisation must pay close attention to understanding objectives so that balance can be achieved between maximising opportunities and minimizing threats.

Indicator B

Indicator B:         The amount of risk that an organisation is willing to take and the associated amount of risk management that is carried out must align to objectives. To do this an organisation should determine its risk capacity and risk appetite.

Indicator C

Indicator C:         A key aspect of successful risk management is the shared understanding between stakeholders that risk is dynamic not static. …risk management must be a repetitive process that anticipates and is responsive to change…

Read more about the Indicators on the original post at: https://expleoacademy.com/int/risk-and-testing-principle-1/

Risk and Testing Conclusion

In summary – management of risk principle one does seem to map clearly to testing, further supporting the argument that testing and risk management are the same. It also seems to highlight some weaknesses that are carried in our commonly shared materials around how to engage with stakeholders to the benefit of both them and testing teams.

All training courses at Expleo Academy

bcs intermediate certificate in software testing
change management fundamentals
isqi certified agile business analysis caba revision session and exam 1500
flow ambassador excelling at business agility masterclass
estimating for testers
dasa certified devops fundamentals
sql fundamentals
istqb certified tester advanced level security tester
istqb certified tester advanced level technical test analyst
istqb certified tester advanced level test manager
project management professional pmp preparation course
agile certified practitioner pmi acp preparation course
using selenium in csharp with workshop
apmg certified change management in an agile environment foundation and practitioner
risk management professional pmi rmp certification preparation course
project management fundamentals
program management professional pgmp preparation course
istqb certified tester foundation level extension agile tester
bcs certificate in modelling business processes
isaqb certified professional for software architecture foundation level cpsa f
bcs foundation certificate in business analysis
icagile certified product ownership
writing user stories workshop
bcs certificate in requirements engineering
bcs international diploma in business analysis exam preparation workshop
bcs certificate in business analysis practice
agile requirements engineering
certified disciplined agile scrum master dasm
icagile certified agile fundamentals
istqb certified tester advanced level test analyst
certified disciplined agile senior scrum master dassm
requirements verification
isqi certified agile business analysis caba
certified associate in project management capm preparation course
linux essentials
java fundamentals
performance testing fundamentals
agile process tools a look into scrum kanban and safe
scrum master bootcamp
product ownership bootcamp
a4q certified selenium tester foundation
psychology of communication intelligence
test automation fundamentals
using cucumber with selenium
using selenium with workshop
asqf certified professional for project management
istqb certified tester foundation level
agile bootcamp

About Expleo Academy

The Expleo Academy enables you to acquire and develop the right skills by delivering a suite of accredited training courses. With a global presence and reach, we deliver hundreds of training events to thousands of participants each year. We bring the knowledge and real experience of working with global companies and the flexibility of delivering public workshops, custom in-house solutions and blended learning approaches incorporating digital learning capabilities.

The Expleo Academy offers training courses  in Management Consultancy, Business Agility, Continuous Quality, Software Engineering or even Private Events with detailed Learning pathways in Business Analysis, Change Management, Project / Program Management, Software Quality Analysis, Software Quality Management and Software Engineering. Many training courses like test automation engineer, certified tester, automotive spice, usability testing, scrum product owner or isaqb training include certification based on istqb, leading safe, asqf, intacs or isaqb. The Expleo Academy also offers training for wellknown Tools like Microsoft ProjectTools & Automation trainings like Selenium, Jira Essentials, Jira XrayJira Server, Confluence trainingKanbanTricentis and many more.

Academy is part of the Expleo Group , that offers Engineering, Consultancy- and IT-Services to the industry. At https://products.expleogroup.com/ one could find a bunch of products which Expleo developed over the years, among them Testona (Features, Klassifikationsbaum-Methode, Training & Tutorial, References, Download & Price), Modica (MBT Process, Modelling, Object Definition, Generation, Automation, Training & Tutorial), Messina, (Camera-Hil-System, Ancona-Hil-System, Messina RS-UI Test Automation, Modular-Hil-System), Trentino, Persim, Savona, Bergamo, Meran, Powerdiff, and also Powerdiffmerge, and of course the Aerospace Products like Crew Rest Unit, Crew Rest Couch and ALM (3D Printed) parts. On their Tools Website one could find the Test-Suite Expleo-Test/Professional (formerly known as SQS-Test/Professional) at https://tools.expleogroup.com/

Contact the Expleo Academy

Expleo Technology Ireland Ltd
30 North Wall Quay,
Dublin D01 R8H7

Tel +353 87 2355902
Web: https://expleoacademy.com/int/

Google Ads & SEO – da Agency

 

Der Beitrag The Principles of Risk and Testing erschien zuerst auf da Agency – Webdesign & SEO, Köln.

Veröffentlicht am

RELOGA Deponien witterungsbedingt geschlossen

da Agency – Webdesign & SEO, Köln meldet:

Die Steinbruchverfüllung Büschhof der RELOGA in Nümbrecht  bleibt witterungsbedingt am 30.11.2021 geschlossen. Weiterhin muss witterungsbedingt die Erddeponie Großenscheidt in Hückeswagen vom 30.11. – 01.12.2021 geschlossen bleiben.

Die normalen Öffnungszeiten der Steinbruchverfüllung Büschhof :

Öffnungszeiten

Montag 07:30 – 16:30
Dienstag 07:30 – 16:30
Mittwoch 07:30 – 16:30
Donnerstag 07:30 – 16:30
Freitag 07:30 – 16:30

Die normalen Öffnungszeiten der Erddeponie Großenscheidt :

Öffnungszeiten

Montag 07:30 – 16:00
Dienstag 07:30 – 16:00
Mittwoch 07:30 – 16:00
Donnerstag 07:30 – 16:00
Freitag 07:30 – 14:00

 

Bei Fragen wenden Sie sich bitte direkt an den Standort

Steinbruchverfüllung Büschhof

Standortadresse

Büschhof 50
51588 Nümbrecht
Adresse anzeigen & Route planen mit Google


Erddeponie Großenscheidt

Standortadresse

Erddeponie Großenscheidt
42499 Hückeswagen
Adresse anzeigen & Route planen mit Google


Telefon – Fax – Email

Telefon 0214 86687-15
Telefax 0214 86687-24
E-Mail mineralik@reloga.de

Die Reloga betreibt noch weitere Erddeponien in der Region, wo Erdaushub und Bauschutt deponiert werden können.
Hierbei handelt es sich um die Deponien:

Die Deponie Flaberg in Gummersbach muss vom 01.12. bis einschließlich den 10.12.2021 aufgrund von Asphaltierarbeiten für den Wegebau geschlossen werden.

Mögliche Ferienzeiten erfahren Sie unter: https://www.reloga.de/unternehmen/aktuelles/

Link zur Originalmeldung:
https://www.reloga.de/unternehmen/aktuelles/2021-11-30-witterungsbedingt-ist-die-steinbruchverfuellung-nuembrecht-am-30112021-geschlossen-127.html
https://www.reloga.de/unternehmen/aktuelles/2021-11-29-erddeponie-grossenscheidt-vom-3011-01122021-geschlossen-128.html
https://www.reloga.de/unternehmen/aktuelles/2021-11-30-erddeponie-flaberg-in-gummersbach-vom-01-10122021-geschlossen-129.html

Weitere News:

Alle Unternehmensmeldungen der RELOGA anzeigen

Die Reloga Erddeponien

Die Reloga Deponien finden Sie an den folgenden Adressen

Erddeponie Großenscheidt
42499 Hückeswagen

Erddeponie Flaberg
Forstweg
51647 Gummersbach

Erddeponie Steinbruchverfüllung Büschhof
Büschhof 50
51588 Nümbrecht

Steinbruchverfüllung Eremitage
Eremitage 6
51789 Lindlar

Über die Reloga GmbH

Mit rund 52 Millionen Euro Umsatz ist die RELOGA-Gruppe ein etablierter regionaler Entsorger im Bereich Abfallentsorgung und Vermietung von Containern. Aus einem Abfallvolumen (Sperrmüll, Baumischabfall, Bauschutt, Gartenabfälle & Grünschnitt, Elektroschrott sowie Haushaltsauflösungen) von jährlich rund 1,2 Millionen Tonnen gewinnt die RELOGA wichtige Wertstoffe zurück. Die Reloga hat mehrere Standorte von denen aus der Containerdienst das Gebiet rund um KölnLeverkusen und Bergischen Land (u.A. Leverkusen: Alkenrath, Bergisch Neukirchen, Bürrig, Hitdorf, Küppersteg, Lützenkirchen, Manfort, Opladen, Quettingen, Rheindorf, Schlebusch, Steinbüchel, Wiesdorf, Köln:, Innenstadt, Chorweiler, Ehrenfeld, Kalk, Lindenthal, Mülheim, Nippes, Porz, Rodenkirchen, Rheinisch-Bergischer Kreis:, Bergisch Gladbach, Burscheid, Kürten, Leichlingen, Odenthal, Overath, Rösrath, Wermelskirchen, Kreis Mettmann:, Monheim, Langenfeld, Oberbergischer Kreis:, Bergneustadt, Engelskirchen, Gummersbach, Hückeswagen, Lindlar, Marienheide, Morsbach, Nümbrecht, Radevormwald, Reichshof, Waldbröl, Wiehl, Wipperfürth,) bedient und mehrere Wertstoffhöfe. Da gibt es den Wertstoffhof Leichlingen (Bremsen), die Wertstoffhöfe Burscheid (Hilgen und Heiligeneiche)den Wertstoffhof in Rhein-Berg, den Wertstoffhof Oberberg-Nord sowie den Wertstoffhof Oberberg-Süd .

Neben der Abfallentsorgung bieten die RELOGA ihren Kunden zudem die Möglichkeit Komposterde und Blumenerde kaufen zu können – in 40 l-Säcken oder Holzprodukte wie Buchenscheite, Brennholz oder Holzpellets in 15 kg- Säcken zu erwerben. Darüber hinaus betreibt die RELOGA in der Region eine hohe Anzahl an Deponien, auf denen der restliche Müll landet, der nicht dem Recycling und Stoffstrommanagement zuzuführen ist. Zu den Deponien der RELOGA zählt u.A. die Erddeponie in Lüderich (Overrath), die Deponie in Großenscheidt (bei Hückeswagen), die Deponie in Nürmbrecht (Steinbruch Büschhof) und die Erddeponie Dümmlingshausen bei Gummersbach.

Beim Containerdienst der RELOGA kann man sich beim Container Mieten und gleich bei der Container-Bestellung auch Mutterboden kaufen  oder sich Rindenmulch liefern lassen.

Der RELOGA Containerdienst ist ein zertifizierter Entsorgungsfachbetrieb und garantiert ihren Kunden eine professionelle und sichere Beseitigung selbst gefährlicher Abfälle wie Asbest und Mineralfaserabfällen samt Erstellung eines Entsorgungsnachweises. Aus einem Abfallvolumen von jährlich rund 1,2 Millionen Tonnen werden wichtige Wertstoffe zurückgewonnen. Neben der Entsorgung der Abfälle ist das Stoffstrom Management ein wichtiges Arbeitsfeld der RELOGA-Unternehmensgruppe.

Kontakt

RELOGA GmbH
Braunswerth 1-3
51766 Engelskirchen

Betriebsstätte Leverkusen:
Robert-Blum-Straße 8
51373 Leverkusen

Telefon: 0800 600 2003
Web: https://www.reloga.de

Container mieten: https://container.reloga.de
E-Mail: info@reloga.de

FOLLOW

https://de-de.facebook.com/RELOGA.GmbH

Google AdWords & SEO Agentur  da Agency.

 

Der Beitrag RELOGA Deponien witterungsbedingt geschlossen erschien zuerst auf da Agency – Webdesign & SEO, Köln.

Veröffentlicht am

Nike Air Pegasus 83 Green Abyss/White -Sunset-Black US 6.5 EU 39 US 7.5 EU 40.5 US 8 EU 41 US 9.5 EU 43 US 10 EU 44 US 10.5 EU 44.5 US 11.5 EU 45.5 US 12.5 EU 47

© 2022, FRESH OUT THE BOX
Powered by Shopify

  • american express
  • maestro
  • master
  • paypal
  • visa

Weiterlesen unter: https://www.freshoutthebox.de/products/nike-air-pegasus-83-green-abyss-white-sunset-black
Noch mehr Nike Sneaker unter https://www.freshoutthebox.deOnline Sneaker Shop

Veröffentlicht am

NIKE Internationalist PRM olive flk/drk ldm-cshmr-mtllc-gl US 8.5 EUR 42 US 9 EUR 42.5 US 9.5 EUR 43 US 10 EUR 44 US 10.5 EUR 44.5 US 11 EUR 45 US 11.5 EUR 45.5 US 12 EUR 46 US 12.5 EUR 47 US 13 EUR 47.5 US 8 EUR 41

© 2022, FRESH OUT THE BOX
Powered by Shopify

  • american express
  • maestro
  • master
  • paypal
  • visa

Weiterlesen unter: https://www.freshoutthebox.de/products/internationalist-prm
Noch mehr Nike Sneaker unter https://www.freshoutthebox.deOnline Sneaker Shop

Veröffentlicht am

Vans Old Skool x Red Flags Custom. Bandana Paisley US 6.5 EU 38.5 US 7 EU 39 US 7.5 EU 40 US 8 EU 40.5 US 8.5 EU 41 US 9 EU 42.5 US 9.5 EU US 10 EU 43 US 10.5 EU 44 US 11 EU 44.5 US 11.5 EU 45 US 12 EU 46 US 13 EU 47

Vans Old Skool x Red Flags Custom.
Hand-stitched 👌🏽

Bandana Paisley Edition

Der Vans Old Skool ist ein Low-top-Schnürschuh. Dies war das erste Modell, das sich mit dem legendären Seitenstreifen zeigte. Er verfügt über einen gepolsterten Rand für mehr Halt und Flexibilität, verstärkte Zehenkappen, die vor Abnutzung schützen und die charakteristische Vans-Laufsohle in Waffel-Optik für Rutschfestigkeit.

Außenmaterial:56 % Wildleder, 44 % Canvas

Mehr Infos zu Vans Old Skool x Red Flags Custom. Bandana Paisley US 6.5 EU 38.5 US 7 EU 39 US 7.5 EU 40 US 8 EU 40.5 US 8.5 EU 41 US 9 EU 42.5 US 9.5 EU US 10 EU 43 US 10.5 EU 44 US 11 EU 44.5 US 11.5 EU 45 US 12 EU 46 US 13 EU 47 unter: https://www.freshoutthebox.de/products/vans-old-skool-black
Noch mehr Vans unter https://www.freshoutthebox.deOnline Sneaker Shop

Veröffentlicht am

Nike Air Force 1 ´07 White / White US 8 EU 40 US 8.5 EU 42 US 9 EU 42.5 US 9.5 EU 43 US 10 EU 44 Us 10.5 EU 44.5 US 11 EU 45 US 11.5 EU 45.5 US 12 EU 46 US 13 EU 47.5

Nike Air Force 1 ’07

Art: 315122-111

LEGENDÄRES DESIGN NOCH BESSER.

Die Legende lebt weiter im Nike Air Force 1 07 Herrenschuh, der modernen Version des kultverdächtigen AF1, die den unverkennbaren Style mit einer hochwertigen, leichten Dämpfung kombiniert.

Die tief geschnittene Silhouette erzeugt ein bodennahes Gefühl und einen klassischen Look. Diese Version des Nike Air Force 1 mit markanten Lederkanten hat einen deutlichen, klar geschnittenen Look und verbesserte Details.
Das Obermaterial aus Leder und Textil weist strategisch platzierte Überzüge auf, die für eine ausgezeichnete Strapazierfähigkeit, Passform und Stabilität sorgen. Perforationen verbessern die Belüftung und sorgen für trockenen Tragekomfort.
Eine Metallplakette mit der Aufschrift „AF-1 ’82“ an den Schnürsenkeln würdigt die Premiere des Schuhs.
Ein durchgehendes Nike Air-Element in der strapazierfähigen Schaumstoffmittelsohle sorgt bei geringem Gewicht für viel Dämpfung und Aufprallschutz.
Drehpunkte an Vorfuß und Ferse sorgen für viel Bewegungsspielraum in alle Richtungen.

Cow Lthr UPPER

Weiterlesen unter: https://www.freshoutthebox.de/products/nike-air-force-1-07-white-white
Noch mehr Nike Sneaker unter https://www.freshoutthebox.deOnline Sneaker Shop

Veröffentlicht am

Nike Air Vortex – BLUE RECALL/WHITE-DIFFUSED BLUE-BLACK US 7.5 EU 40.5 US 9 EU 42.5 US 9.5 EU 43 US 10 EU 44 US 12 EU 46 US 13 EU 47.5

Nike Air Vortex Shoe

Art: 903896-402

EIN KLASSIKER.
Mit dem Nike Air Vortex Herrenschuh kehrt ein echter Klassiker zurück. Das Modell verfügt über den Look und die Dämpfung des gekapselten Nike Air-Elements, das schon das Original sofort zu einem echten Klassiker werden ließ.

Gekapseltes Nike Air-Element bietet Aufprallschutz.
Low Top-Design für eine uneingeschränkte Passform.
Modifizierte Außensohle mit Waffelprofil maximiert die Traktion und Strapazierfähigkeit bei geringem Gewicht.
Durchgehende EVA-Mittelsohle für leichte Dämpfung.
Flexkerben spiegeln die Gangart des Fußes wider und erleichtern natürliche Bewegungsabläufe.

Weiterlesen unter: https://www.freshoutthebox.de/products/nike-air-vortex-blue-recall-white-diffused-blue-black
Noch mehr Nike Sneaker unter https://www.freshoutthebox.deOnline Sneaker Shop

Veröffentlicht am

Nike Air Vortex MARS STONE/DEEP BURGUNDY-SAIL-BLACK US 6 EU 38.5 US 6.5 EU 39 US 7 EU 40 US 9 EU 42.5 US 9.5 EU 43 US 10 EU 44 US 10.5 EU 44.5 US 11 EU 45 US 11.5 EU 45.5 US 12 EU 46 US 13 EU 47

Men’s Nike Air Vortex Shoe

 Art: 903896602

EIN KLASSIKER.
Mit dem Nike Air Vortex Herrenschuh kehrt ein echter Klassiker zurück. Das Modell verfügt über den Look und die Dämpfung des gekapselten Nike Air-Elements, das schon das Original sofort zu einem echten Klassiker werden ließ.

Gekapseltes Nike Air-Element bietet Aufprallschutz.
Low Top-Design für eine uneingeschränkte Passform.
Modifizierte Außensohle mit Waffelprofil maximiert die Traktion und Strapazierfähigkeit bei geringem Gewicht.
Durchgehende EVA-Mittelsohle für leichte Dämpfung.
Flexkerben spiegeln die Gangart des Fußes wider und erleichtern natürliche Bewegungsabläufe.

Weiterlesen unter: https://www.freshoutthebox.de/products/nike-air-vortex-mars-stone-deep-burgundy-sail-black
Noch mehr Nike Sneaker unter https://www.freshoutthebox.deOnline Sneaker Shop